Skip to content

anna-money/workflow-bionic-beaver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Common GHA workflows

There are some implicit requirements for your service:

Makefile:

It should have install-dev target, which installs all dependencies locally.

make install-dev

It should have test target, which runs all tests locally.

make test

It should have set-version target, which sets ${version} of your service.

make set-version

which can be implemented as:

echo "__version__ = '${version}'" > app_dir/version.py

or

pip install poetry
poetry version ${version}

Client library:

  • app_dir/schema directory should contain your client code.
  • __version__ variable from app_dir/version.py file should be used as a client version.

Other:

  • .pre-commit-config.yaml file should be presented in the root of your repository.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published