Skip to content

Add ci.yaml change

Add ci.yaml change #3

Workflow file for this run

---
name: build
on: push
jobs:
tox:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
tox:
- '3.8'
- '3.10'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }

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

View workflow run for this annotation

GitHub Actions / build

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 17, Col: 27): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
- run: pip install tox
- run: tox -e py