forked from protiumx/rq
-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (49 loc) · 1.14 KB
/
rq-cli.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
51
52
53
54
55
56
57
name: rq-cli
on:
pull_request:
paths:
- .github/workflows/rq-cli.yml
- rq-cli/**/*.rs
- rq-cli/**/Cargo.toml
- '!**/*.http'
push:
paths:
- .github/workflows/rq-cli.yml
- rq-cli/**/*.rs
- rq-cli/**/Cargo.toml
- '!**/*.http'
branches:
- main
concurrency:
group: rq-cli-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
CI:
runs-on: ubuntu-latest
defaults:
run:
working-directory: "rq-cli"
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: -p rq-cli -- --check
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -p rq-cli -- -D warnings
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: -p rq-cli