Skip to content

Migrate dependency toml to tomllib #35

Migrate dependency toml to tomllib

Migrate dependency toml to tomllib #35

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.11"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
name: Set up Python
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pip install poetry
- name: Install repo
run: poetry install --no-interaction --no-ansi
- name: Run tests
run: bash scripts/tests.sh
- name: Upload coverage HTML
if: ${{ matrix.python-version == "3.8" }}

Check failure on line 24 in .github/workflows/test.yaml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/test.yaml (Line: 24, Col: 13): Unexpected symbol: '"3'. Located at position 26 within expression: matrix.python-version == "3.8"
uses: actions/upload-artifact@v3
with:
name: htmlcov
path: htmlcov