Skip to content

chore(deps): update all non-major dependencies #57

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #57

Workflow file for this run

# Managed by copier — changes may be overwritten by `copier update`
name: PR Checks
on:
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
checks:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: ./.github/actions/nix-setup
- name: Lint
run: nix develop -c just lint
- name: Test
run: nix develop -c just test
- name: Integration Test
run: nix develop -c just test-integration
consistency:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: ./.github/actions/nix-setup
- name: Set up Git
run: |
git config --global user.name github-actions
git config --global user.email github-actions@github.com
- name: Regenerate from template
run: nix develop -c just render
- name: Check for drift
run: |
git checkout -- .copier-answers.yaml
git diff
test -z "$(git status --porcelain)"