From 5c1a1672d644b02de4d4f222ac86150bc0eab249 Mon Sep 17 00:00:00 2001 From: Tau Date: Wed, 17 Jan 2024 14:09:33 +0100 Subject: [PATCH] Add GitHub Actions config --- .github/workflows/ci.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..25f5e9d --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,25 @@ +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@v3 + - name: Build + run: cargo build --all + - name: Check format + run: cargo fmt --all -- --check + - name: Run clippy + run: cargo clippy --workspace --all-targets --all-features -- --deny warnings + - name: Run tests + run: cargo test --all