Update README.md #81
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run unit and integration tests for CI | |
# Build any branch that passes CI as a docker image | |
# Push a docker image tagged with the git hash and branch name | |
# For PR's, display the option to deploy to the test env | |
# For merges to main, display the option to deploy to the dev env | |
# The environments are configured in the GitHub repo settings | |
name: CI/CD | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/cached-venv | |
- name: Run mypy & service tests | |
run: | | |
source venv/bin/activate | |
mypy optionlab/ --ignore-missing-imports | |
black . --check --diff --color | |
pytest -m "not benchmark" | |
publish: | |
name: Publish to pypi.org | |
if: github.event.ref == 'refs/heads/main' | |
needs: [ tests ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/cached-venv | |
- name: Build and publish | |
env: | |
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} | |
run: | | |
poetry config pypi-token.pypi "$PYPI_TOKEN" | |
poetry publish --build |