Skip to content

Making and error

Making and error #18

Workflow file for this run

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: pytest --junitxml=test-result.xml
- name: Publish Test Results
uses: EnricoMi/[email protected]
if: always()
with:
files: test-result.xml
check_name: Test Result (Python ${{matrix.python-version}})
permissions:

Check failure on line 37 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 37, Col: 9): Unexpected value 'permissions'
contents: read
issues: read
checks: write
pull-requests: write