Skip to content

GitHub actions incremental #14

GitHub actions incremental

GitHub actions incremental #14

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"
run: "./.ci-scripts/flake8_before.sh"
- name: "[flake8]: run"
run: "./.ci-scripts/flake8_run.sh"
- name: Cache Docker images.
uses: ScribeMD/[email protected]
with:
key: docker-${{ runner.os }}-${{ hashFiles(paths) }}

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

View workflow run for this annotation

GitHub Actions / Python package

Invalid workflow file

The workflow is not valid. .github/workflows/lint.yml (Line: 31, Col: 16): Unrecognized named-value: 'paths'. Located at position 11 within expression: hashFiles(paths)
- 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"