chore: add project boilerplate from template #6
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
--- | |
name: Code test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
integration-test: | |
name: Integration test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up environment | |
uses: ./.github/actions/setup/poetry | |
with: | |
os: ${{ job.os }} | |
python-version: '3.11' | |
poetry-install-options: "--with=test" | |
poetry-export-options: "--with=test" | |
- name: Run tests and generate coverage as test_integration.xml | |
run: | | |
poetry run pytest \ | |
--cov-report term \ | |
--cov-report xml:test_integration.xml \ | |
--cov=tests/test_integration | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: test_integration | |
files: ./test_integration.xml | |
fail_ci_if_error: true | |
verbose: true | |
unit-test: | |
name: Unit test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up environment | |
uses: ./.github/actions/setup/poetry | |
with: | |
os: ${{ job.os }} | |
python-version: '3.11' | |
poetry-install-options: "--with=test" | |
poetry-export-options: "--with=test" | |
- name: Run tests and generate coverage as test_unit.xml | |
run: | | |
poetry run pytest \ | |
--cov-report term \ | |
--cov-report xml:test_unit.xml \ | |
--cov=tests/test_unit | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: test_unit | |
files: ./test_unit.xml | |
fail_ci_if_error: true | |
verbose: true | |
... |