CI_GH: use actions-rs

master
Raymon Zutekouw 4 years ago committed by Raymon Zutekouw
parent 248be40f7d
commit dd91bba51e
  1. 13
      .github/workflows/ci.yml

@ -3,11 +3,14 @@ name: MBLF CI
on: [push] on: [push]
jobs: jobs:
build: build_and_format_and_test:
name: Rust project
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- uses: icepuma/rust-action@master - uses: actions-rs/toolchain@v1
with: 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