-
Notifications
You must be signed in to change notification settings - Fork 19
50 lines (42 loc) · 1.44 KB
/
ci.yml
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
name: CI
on:
push:
branches:
- main
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: AdityaGarg8/remove-unwanted-software@v4
with:
remove-android: true
remove-cached-tools: true
remove-codeql: true
remove-docker-images: true
remove-dotnet: true
remove-haskell: true
remove-large-packages: true
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
submodules: true
- uses: DeterminateSystems/flake-checker-action@v9
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- uses: Swatinem/rust-cache@v2
- run: nix develop -c cargo deny check
- run: nix develop -c cargo component check
- run: nix develop -c cargo clippy --all-features --fix --no-deps --allow-dirty
- run: nix develop -c cargo fmt --all
- run: nix develop -c cargo ws exec --no-bail -- cargo rdme --force
- run: nix develop -c prettier -w .
- run: nix develop -c terraform fmt -recursive
- run: nix fmt
- uses: EndBug/add-and-commit@v9
with:
message: "chore: lint"
default_author: github_actions
- run: nix develop -c cargo doc --all-features --no-deps
- run: nix develop -c cargo clean
- run: nix develop -c cargo test --all-features