-
Notifications
You must be signed in to change notification settings - Fork 4
40 lines (38 loc) · 1.01 KB
/
pr.yaml
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
name: pr
on: [pull_request]
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: taiki-e/install-action@v2
with:
tool: just
- uses: actions-rs/[email protected]
with:
override: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
with:
sharedKey: debug-build
- run: just test
lint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: taiki-e/install-action@v2
with:
tool: just
- run: |
echo "RUST_TOOLCHAIN_NIGHTLY=$(cat ./rust-toolchain-nightly)" >> $GITHUB_ENV
- uses: actions-rs/[email protected]
with:
toolchain: ${{ env.RUST_TOOLCHAIN_NIGHTLY }}
components: rustfmt
- uses: actions-rs/[email protected]
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
with:
sharedKey: debug-build-nightly
- run: just lint "strict"