Skip to content
Snippets Groups Projects

use `gitlab.isae-supaero.fr:a.stevan/nob.rs` to build

Merged STEVAN Antoine requested to merge use-nob-to-build into main
2 files
+ 19
7
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 11
3
@@ -17,8 +17,12 @@ jobs:
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Install dependencies
run: |
cargo install cargo-script
- name: Run fmt check
run: make fmt-check
run: |
./make.rs fmt --check
test:
runs-on: ubuntu-latest
@@ -31,8 +35,12 @@ jobs:
sudo apt update --yes
sudo apt upgrade --yes
sudo apt install protobuf-compiler --yes
cargo install cargo-script
- name: Show configuration
run: make show
run: |
./make.rs version
- name: Run tests
run: |
make check clippy test
./make.rs check
./make.rs clippy
./make.rs test
Loading