Skip to content
Snippets Groups Projects

CI

Merged Stephen D requested to merge ci into master
+ 3
0
@@ -5,6 +5,7 @@ stages:
- build
before_script:
- apt install mingw-w64
- rustup component add rustfmt
- rustup component add clippy
- rustup target add x86_64-pc-windows-gnu
@@ -12,12 +13,14 @@ before_script:
- rustup target add aarch64-apple-ios
test:
stage: test
script:
- cargo fmt -- --check
- cargo clippy --all-targets --all-features -- -D warnings
- cargo test
build:
stage: build
script:
- cargo build --release
- cargo build --release --target x86_64-pc-windows-gnu
Loading