-
Notifications
You must be signed in to change notification settings - Fork 2
91 lines (82 loc) · 2.67 KB
/
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
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
91
name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: build
run: cargo build --verbose
build_features:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: all features
run: cargo build --verbose --all-features
- name: no default features
run: cargo build --verbose --no-default-features
- name: 2D
run: cargo build --verbose --no-default-features --features 2D
- name: 3D
run: cargo build --verbose --no-default-features --features 3D
- name: auto coloring 2D
run: cargo build --verbose --no-default-features --features "auto-coloring 2D"
- name: auto coloring 3D
run: cargo build --verbose --no-default-features --features "auto-coloring 3D"
build_examples:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: build 2d game of life
run: cargo clippy --all-features --example 2d_game_of_life
- name: build 3d game of life
run: cargo clippy --all-features --example 3d_game_of_life
- name: build 2d immigration game
run: cargo clippy --all-features --example 2d_immigration_game
- name: build 2d rainbow game
run: cargo clippy --all-features --example 2d_rainbow_game
- name: build 2d color cyclic
run: cargo clippy --all-features --example 2d_cyclic_colors
- name: build 2d rock paper scissor
run: cargo clippy --example 2d_rock_paper_scissor
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: test
run: cargo test --tests --all-features
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: "rustfmt"
- name: Check Formatting
run: cargo fmt --all -- --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Cargo clippy installation
run: rustup component add clippy
- name: Cargo clippy check
run: cargo clippy --all-features --all --tests -- -D warnings
rustdoc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: rustdoc
run: cargo rustdoc --all-features -- -D warnings