ci(github) add basic build and lint CI test

This commit is contained in:
Datong Sun 2021-09-17 14:59:44 +08:00 committed by Datong Sun
parent 819dccc0d8
commit 5866cbe512

22
.github/workflows/rust.yml vendored Normal file
View File

@ -0,0 +1,22 @@
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@v2
- name: Run lint
run: cargo clippy --verbose
- name: Build
run: cargo build --verbose