Making and error #8
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: CI | ||
on: | ||
push: | ||
branches: | ||
- "main" | ||
pull_request: | ||
branches: | ||
- "main" | ||
workflow_dispatch: | ||
jobs: | ||
tests: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ['3.10', '3.12'] | ||
os: [ubuntu-latest] | ||
runs-on: ${{matrix.os}} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{matrix.python-version}} | ||
- name: Install Project | ||
run: pip install '.[test]' | ||
- name: Run tests | ||
run: make testci | ||
- name: Publish junit result | ||
run: EnricoMi/publish-unit-test-result-action@v1 | ||
if: always() | ||
with: | ||
Check failure on line 34 in .github/workflows/main.yml GitHub Actions / CIInvalid workflow file
|
||
files: test-result.xml | ||
check_name: Test Result (Python ${{matrix.python-version}}) |