Add minimal github action sequence #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | |
- name: Install dependencies | |
# install all dependencies (including development ones) defined through pyproject.toml | |
run: pdm install --group :all | |
- name: Run checks | |
run: pdm run check | |
- name: Download additional models | |
run: python -m ensurepip && pdm run download-spacy-model | |
- name: Run tests | |
run: pdm run test |