Skip to content

Try to fix syntax error #8

Try to fix syntax error

Try to fix syntax error #8

Workflow file for this run

name: Python package
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: flake8: before

Check failure on line 22 in .github/workflows/lint.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/lint.yml

Invalid workflow file

You have an error in your yaml syntax on line 22
run: "./.ci-scripts/flake8_before.sh"
- name: flake8: run
run: "./.ci-scripts/flake8_run.sh"
- name: pytest: before
run: "./.ci-scripts/pytest_before.sh"
- name: pytest: run
run: "./.ci-scripts/pytest_run.sh"
- name: pytest: after
run: "./.ci-scripts/pytest_after.sh"