Create rust.yml

This commit is contained in:
nora 2022-02-20 13:30:28 +01:00 committed by GitHub
parent c5d83fe776
commit d426a18e93
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

31
.github/workflows/rust.yml vendored Normal file
View file

@ -0,0 +1,31 @@
name: CI
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: Check dashboard frontend formatting
uses: creyD/prettier_action@v4.2
with:
dry: true
prettier_options: --check **/*.{html,css,js,md} --ignore-path .gitignore
- name: Build
run: cargo build --verbose
- name: Run clippy -D clippy::all
run: cargo clippy --verbose -- -D clippy::all
- name: Check format
run: cargo fmt --verbose --all -- --check
- name: Run tests
run: cargo test --verbose --all