From d426a18e93e7d1e549dcf1b6ed726e2b53ff223b Mon Sep 17 00:00:00 2001 From: nils <48135649+Nilstrieb@users.noreply.github.com> Date: Sun, 20 Feb 2022 13:30:28 +0100 Subject: [PATCH] Create rust.yml --- .github/workflows/rust.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..d422a95 --- /dev/null +++ b/.github/workflows/rust.yml @@ -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