Relock dependencies #92
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
name: PR-Merge | |
on: | |
push: | |
branches: | |
- 'master' | |
jobs: | |
ci-job: | |
name: Checks | |
uses: ./.github/workflows/checks.yml | |
publish-coverage: | |
name: Publish Code Coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: SCM Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python & Poetry Environment | |
uses: ./.github/actions/python-environment | |
with: | |
python-version: 3.8 | |
- name: Collect Code Coverage | |
run: poetry run invoke test.coverage | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
- name: Publish Code Coverage | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: poetry run coveralls --service=github | |
publish-docs: | |
name: Publish Documentation | |
uses: ./.github/workflows/gh-pages.yml |