Run a full build in CI to avoid recompilation
This commit is contained in:
parent
4ad7613a9b
commit
84180e67d8
1 changed files with 5 additions and 2 deletions
|
|
@ -11,13 +11,16 @@ jobs:
|
||||||
run: rustup component add rustfmt clippy
|
run: rustup component add rustfmt clippy
|
||||||
- name: checkout code
|
- name: checkout code
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: install dependencies
|
- name: install dependencies
|
||||||
run: cargo install --path .
|
run: cargo install --path .
|
||||||
- name: cargo check
|
- name: cargo build
|
||||||
run: cargo check --all-targets
|
run: cargo build --all-targets
|
||||||
|
|
||||||
- name: format
|
- name: format
|
||||||
run: cargo fmt -- --check
|
run: cargo fmt -- --check
|
||||||
- name: lint
|
- name: lint
|
||||||
run: cargo clippy -- -Dwarnings
|
run: cargo clippy -- -Dwarnings
|
||||||
- name: test
|
- name: test
|
||||||
run: cargo test
|
run: cargo test
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue