update ci #497
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: Test | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
max-parallel: 1 | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
- windows-latest | ||
- macos-latest | ||
python-version: | ||
# - '3.8' | ||
- '3.11' | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
cache: pip | ||
cache-dependency-path: poetry.lock | ||
python-version: ${{ matrix.python-version }} | ||
- uses: abatilo/actions-poetry@v3 | ||
- run: poetry install --no-interaction | ||
- name: Test | ||
if: ${{ runner.os != 'Linux' }} | ||
run: poetry run task test | ||
- name: Test & publish code coverage | ||
if: ${{ runner.os = 'Linux' && env.CC_TEST_REPORTER_ID != '' }} | ||
Check failure on line 38 in .github/workflows/test.yml GitHub Actions / TestInvalid workflow file
|
||
uses: paambaati/[email protected] | ||
env: | ||
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | ||
with: | ||
coverageCommand: poetry run task test:ci | ||
coverageLocations: ${{github.workspace}}/cov.xml:coverage.py | ||
debug: true |