-
-
Notifications
You must be signed in to change notification settings - Fork 3
45 lines (35 loc) · 932 Bytes
/
rust.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
name: twust
on:
push:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
check_and_test_rust_monorepo:
name: Run code checks for rust workspace
timeout-minutes: 80
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v1
- name: Run cargo test in tailwind directory
run: cargo test --verbose
working-directory: tailwind
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- run: rustup component add clippy
- run: cargo clippy -- -D warnings