20 lines
346 B
YAML
20 lines
346 B
YAML
|
name: ci
|
||
|
|
||
|
on: push
|
||
|
|
||
|
env:
|
||
|
CARGO_TERM_COLOR: always
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Clone repo
|
||
|
uses: actions/checkout@master
|
||
|
- name: Build
|
||
|
run: cargo build --verbose
|
||
|
- name: Clippy
|
||
|
run: RUSTFLAGS="-Dwarnings" cargo clippy
|
||
|
- name: Fmt
|
||
|
run: cargo fmt -- --check
|