Skip to content

GHA: fix key name

GHA: fix key name #167

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
ci:
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13-dev", "pypy-3.9", "pypy-3.10"]
suite: ["py", "integration"]
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install tox
- name: Cache fetched crates
uses: actions/cache@v4
if: ${{ matrix.suite == "integration" }}

Check failure on line 22 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 22, Col: 13): Unexpected symbol: '"integration"'. Located at position 17 within expression: matrix.suite == "integration"
with:
path: integration_test/dist
key: dist
- name: Test using tox
run: tox -e ${{ matrix.suite }}
qa:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install tox
run: pip install tox
- name: Test using tox
run: tox -e qa