Skip to content

Update main.yml syntax errors #6

Update main.yml syntax errors

Update main.yml syntax errors #6

Workflow file for this run

name: Tests
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
platform:
- ubuntu-latest
- macos-latest
- windows-latest
continue-on-error: ${{ matrix.python-version == "3.6" }}

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

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 21, Col: 24): Unexpected symbol: '"3'. Located at position 26 within expression: matrix.python-version == "3.6" .github/workflows/main.yml (Line: 21, Col: 24): Unexpected value '${{ matrix.python-version == "3.6" }}'
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest ruff black
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with ruff
run: |
ruff --output-format=github --config=pyproject.toml .
- name: Test with pytest
run: |
pytest