chore(ci): add build and test CI

pull/1/head
Paul Makles 2022-03-05 01:36:57 +00:00
parent 9e566f83e8
commit 74f91d4150
1 changed files with 33 additions and 0 deletions

33
.github/workflows/rust.yaml vendored Normal file
View File

@ -0,0 +1,33 @@
name: Rust build and test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Run cargo build
uses: actions-rs/cargo@v1
with:
command: build
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test