Create rust.yml
This commit is contained in:
parent
5aa2393c8f
commit
237d38d405
24
.github/workflows/rust.yml
vendored
Normal file
24
.github/workflows/rust.yml
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
name: Rust
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
branches: [ "main" ]
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Build
|
||||
run: cargo build --release --verbose
|
||||
- name: Run cargo tests
|
||||
run: cargo test --release --verbose
|
||||
- name: Run lang tests
|
||||
run: ./target/release/mcl_test_dev -m test
|
Loading…
Reference in New Issue
Block a user