CI_GH: use actions-rs

Raymon Zutekouw 4 years ago committed by Raymon Zutekouw
parent b313203c14
commit d077ae6e0b
No known key found for this signature in database
GPG Key ID: E62222846283925
  1. 13
      .github/workflows/ci.yml

@ -3,11 +3,14 @@ name: MBLF CI
on: [push]
jobs:
build:
build_and_format_and_test:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: icepuma/rust-action@master
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
args: cargo fmt -- --check && cargo clippy -- -Dwarnings && cargo test
toolchain: stable
- run: cargo build --release
- run: cargo clippy -- -Dwarnings
- run: cargo test

Loading…
Cancel
Save