build: run integration test with same os as it was built
This commit is contained in:
parent
fc7fbca090
commit
7f5af60757
1 changed files with 7 additions and 5 deletions
|
@ -18,7 +18,7 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Format
|
- name: Format
|
||||||
uses: https://git.kemitix.net/kemitix/rust@v1.80.1
|
uses: https://git.kemitix.net/kemitix/rust@v2.0.4
|
||||||
with:
|
with:
|
||||||
args: cargo fmt --all -- --check
|
args: cargo fmt --all -- --check
|
||||||
|
|
||||||
|
@ -26,19 +26,21 @@ jobs:
|
||||||
# uses: https://github.com/bnjbvr/cargo-machete@v0.6.2
|
# uses: https://github.com/bnjbvr/cargo-machete@v0.6.2
|
||||||
|
|
||||||
- name: Clippy
|
- name: Clippy
|
||||||
uses: https://git.kemitix.net/kemitix/rust@v1.80.1
|
uses: https://git.kemitix.net/kemitix/rust@v2.0.4
|
||||||
with:
|
with:
|
||||||
args: cargo clippy
|
args: cargo clippy
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
uses: https://git.kemitix.net/kemitix/rust@v1.80.1
|
uses: https://git.kemitix.net/kemitix/rust@v2.0.4
|
||||||
with:
|
with:
|
||||||
args: cargo build
|
args: cargo build
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
uses: https://git.kemitix.net/kemitix/rust@v1.80.1
|
uses: https://git.kemitix.net/kemitix/rust@v2.0.4
|
||||||
with:
|
with:
|
||||||
args: cargo test --no-fail-fast
|
args: cargo test --no-fail-fast
|
||||||
|
|
||||||
- name: Integration
|
- name: Integration
|
||||||
run: ./test.sh
|
uses: https://git.kemitix.net/kemitix/rust@v2.0.4
|
||||||
|
with:
|
||||||
|
args: ./test.sh
|
||||||
|
|
Loading…
Reference in a new issue