-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (43 loc) · 1.48 KB
/
ci.yml
File metadata and controls
54 lines (43 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: CI
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
pre-commit:
name: Pre-commit Gate
runs-on: ubuntu-latest
timeout-minutes: 90
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v5
- uses: DeterminateSystems/determinate-nix-action@v3
- uses: DeterminateSystems/flakehub-cache-action@main
- name: Cache Cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
~/.cache/cargo-target/port
key: ${{ runner.os }}-${{ github.job }}-cargo-${{ hashFiles('Cargo.lock', 'flake.lock', 'flake.nix', 'nix/port.nix', 'justfile', '.justfiles/checks.just', '.github/workflows/ci.yml') }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-${{ github.job }}-cargo-${{ hashFiles('Cargo.lock', 'flake.lock', 'flake.nix', 'nix/port.nix', 'justfile', '.justfiles/checks.just', '.github/workflows/ci.yml') }}-
${{ runner.os }}-${{ github.job }}-cargo-
- name: Run quality checks
run: nix develop --command just quality
- name: Run tests
run: nix develop --command just test
- name: Run keel health
run: nix develop --command keel health