Skip to content

Add minimal github action sequence #1

Add minimal github action sequence

Add minimal github action sequence #1

Workflow file for this run

name: Python
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pdm-project/setup-pdm@v4
with:
python-version: "3.10"
- run:
# install all dependencies (including development ones) defined through pyproject.toml
- pdm install --group :all

Check failure on line 19 in .github/workflows/python.yml

View workflow run for this annotation

GitHub Actions / Python

Invalid workflow file

The workflow is not valid. .github/workflows/python.yml (Line: 19, Col: 9): A sequence was not expected
- pdm run check
# download model before using it in tests
- pdm run download-spacy-model
- pdm run test