Skip to content
name: Continuous Integration
on:
push:
jobs:
checks:
strategy:
fail-fast: false
matrix:

Check failure on line 10 in .github/workflows/continuous-integration.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/continuous-integration.yaml

Invalid workflow file

You have an error in your yaml syntax on line 10
python-version:
- 3.9
- "3.10"
- "3.11"
- "3.12"
- pypy-3.7
- pypy-3.8
- pypy-3.9
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
name: ${{ matrix.python-version }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- run: sudo make init-foundationdb
- run: pip install --upgrade pip
- run: pip install poetry
- run: make init
- run: make check