Run correct workflows

This commit is contained in:
Christiaan Goossens
2026-02-06 11:42:14 +01:00
parent 759ea57bc8
commit 5465c1d213
3 changed files with 27 additions and 25 deletions

View File

@@ -5,20 +5,21 @@ on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Sync dependencies
run: scripts/sync
- name: Lint (pylint/ruff lint)
run: scripts/check
- uses: actions/checkout@v5
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Sync dependencies
run: scripts/sync
- name: Lint (pylint/ruff lint)
run: scripts/check