From e7e7146f58a185e8fe320f5598e279b715205e21 Mon Sep 17 00:00:00 2001 From: "Brian J. Tarricone" Date: Tue, 19 Sep 2023 21:23:40 -0700 Subject: [PATCH] Add gitea CI workflow --- .gitea/workflows/ci.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitea/workflows/ci.yaml diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml new file mode 100644 index 0000000..540d35d --- /dev/null +++ b/.gitea/workflows/ci.yaml @@ -0,0 +1,20 @@ +name: CI +on: + - push +jobs: + ci: + name: janitorial + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: https://github.com/actions-rs/toolchain@v1 + with: + toolchain: stable + profile: minimal + components: clippy + - name: clippy + run: cargo clippy --all-targets --all-features -- -D warnings + - name: formatting + run: cargo fmt --check + - name: test + run: cargo test --release