Skip to content

refactor: remove unused import #27

refactor: remove unused import

refactor: remove unused import #27

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:

Check failure on line 8 in .github/workflows/Test.yml

View workflow run for this annotation

GitHub Actions / Test

Invalid workflow file

The workflow is not valid. .github/workflows/Test.yml (Line: 8, Col: 14): Unexpected value '' .github/workflows/Test.yml (Line: 9, Col: 5): Unexpected value 'matrix'
matrix:
python-version: [3.9, 3.10, 3.11, 3.12]
steps:
- uses: actions/checkout@v4
- uses: wntrblm/nox@2024.03.02
with:
python-versions: "${{ matrix.python-version }}"
- name: Test
run: nox --session "tests(python='${{ matrix.python-version }}')"
- name: Coverage
run: |
python -m pip install --upgrade pip setuptools
python -m pip install coverage[toml]
python -m coverage xml
- name: Upload coverage
uses: codecov/codecov-action@v4