Skip to content

Trying to add tests again #5

Trying to add tests again

Trying to add tests again #5

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4

Check failure on line 12 in .github/workflows/lint.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/lint.yaml

Invalid workflow file

You have an error in your yaml syntax on line 12
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install tox
- name: Lint the code
run: tox -e lint
test:
strategy:
matrix:
- os: {"ubuntu-22.04", "macos-14", "windows-2022"}
- python-version: ["3.12"]
include:
- os: "ubuntu-22.04"
python-version: "3.9"
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install tox
- name: Tests the code
run: tox -e tests