All checks were successful
Continuous Integration / Lint, Check & Test (push) Successful in 1m44s
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [https://git.konstantinfickel.de/actions/checkout](https://git.konstantinfickel.de/actions/checkout) | action | major | `v4` → `v6` | --- ### Release Notes <details> <summary>actions/checkout (https://git.konstantinfickel.de/actions/checkout)</summary> ### [`v6`](https://git.konstantinfickel.de/actions/checkout/blob/HEAD/CHANGELOG.md#v602) [Compare Source](https://git.konstantinfickel.de/actions/checkout/compare/v5...v6) - Fix tag handling: preserve annotations and explicit fetch-tags by [@​ericsciple](https://github.com/ericsciple) in [#​2356](https://github.com/actions/checkout/pull/2356) ### [`v5`](https://git.konstantinfickel.de/actions/checkout/blob/HEAD/CHANGELOG.md#v501) [Compare Source](https://git.konstantinfickel.de/actions/checkout/compare/v4...v5) - Port v6 cleanup to v5 by [@​ericsciple](https://github.com/ericsciple) in [#​2301](https://github.com/actions/checkout/pull/2301) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi44NC4yIiwidXBkYXRlZEluVmVyIjoiNDIuODQuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: kfickel <kfickel@noreply.git.konstantinfickel.de> Reviewed-on: kfickel/streamer#22 Co-authored-by: Renovate Bot <renovate@konstantinfickel.de> Co-committed-by: Renovate Bot <renovate@konstantinfickel.de>
26 lines
705 B
YAML
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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 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"
|
|
|
|
- name: Check with PyRight
|
|
run: nix develop .#impure --command bash -c "uv run pyright"
|