-
Notifications
You must be signed in to change notification settings - Fork 26
90 lines (64 loc) · 1.55 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: CI
on:
pull_request:
branches:
- '*'
push:
branches:
- main
jobs:
all:
name: All
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
env:
RUSTFLAGS: --deny warnings
steps:
- uses: actions/checkout@v4
- name: Install Rust Toolchain Components
uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Test
run: cargo test --all
- name: Clippy
run: cargo clippy --all --all-targets -- -D warnings
- name: Format
run: cargo fmt --all --check
- name: Test upt --help
run: cargo run -- --help
- name: Test upt list
run: cargo run -- list
msys2:
name: MSYS2
runs-on: windows-latest
env:
RUSTFLAGS: --deny warnings
steps:
- uses: actions/checkout@v4
- name: Install Rust Toolchain Components
uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Test
run: cargo test --all
- name: Clippy
run: cargo clippy --all --all-targets -- -D warnings
- name: Format
run: cargo fmt --all --check
- uses: msys2/setup-msys2@v2
with:
path-type: inherit
- name: Test upt --help on Windows Bash
if: runner.os == 'Windows'
run: cargo run -- --help
shell: bash
- name: Test upt --help on MSYS2
shell: msys2 {0}
run: cargo run -- --help
- name: Test upt list
shell: msys2 {0}
run: cargo run -- list