File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,7 @@ name: CI
22
33on :
44 push :
5- branches :
6- - main
75 pull_request :
8- branches :
9- - main
106
117env :
128 CARGO_TERM_COLOR : always
@@ -17,17 +13,21 @@ jobs:
1713 runs-on : ubuntu-latest
1814
1915 steps :
20- - name : Checkout repository
21- uses : actions/checkout@v3
16+ - name : Checkout
17+ uses : actions/checkout@v4
2218
23- - name : Setup compose
24- run : docker compose up -d
19+ - name : Setup
20+ run : docker compose up db minio minio-mc -d
21+
22+ - name : Build
23+ run : rustup update stable && rustup default stable
24+ run : cargo build --verbose
2525
2626 - name : Format
27- run : docker exec -i ogcapi cargo fmt --all -- --check
27+ run : cargo fmt --all -- --check
2828
2929 - name : Clippy
30- run : docker exec -i ogcapi cargo clippy --workspace --all-features --examples --tests -- -D warnings
30+ run : cargo clippy --workspace --all-features --examples --tests -- -D warnings
3131
3232 - name : Test
33- run : docker exec -i ogcapi cargo test --workspace --all-features
33+ run : cargo test --workspace --all-features --verbose
You can’t perform that action at this time.
0 commit comments