streamd/.forgejo/workflows/ci.yml
Renovate Bot c32ec4dcfd
All checks were successful
Continuous Integration / Lint, Check & Test (push) Successful in 1m8s
chore(deps): update https://git.konstantinfickel.de/actions/checkout digest to de0fac2
2026-02-03 21:09:09 +00:00

23 lines
602 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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- 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"