streamd/.forgejo/workflows/ci.yml
Konstantin Fickel b3741d3856
All checks were successful
Continuous Integration / Lint, Check & Test (push) Successful in 53s
ci: remove dorny test reporter
2026-01-18 17:32:10 +01:00

26 lines
705 B
YAML

name: Continuous Integration
on:
push:
workflow_dispatch:
jobs:
build-and-lint:
name: Lint, Check & Test
runs-on: nix
steps:
- name: Check out Repository
uses: https://git.konstantinfickel.de/actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- run: nix --version
- run: nix flake check
- name: Install the project
run: 'nix develop .#impure --command bash -c "uv sync --locked --all-extras --dev"'
- name: Test with PyTest
run: nix develop .#impure --command bash -c "uv run pytest --junit-xml test-report.xml"
- name: Check with PyRight
run: nix develop .#impure --command bash -c "uv run pyright"