From 7bcd3fc1ec47e84bb3adcb593c203b9331ce1a14 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Tue, 30 Apr 2024 00:55:43 +0200 Subject: [PATCH] setup gitea action workflows --- .gitea/workflows/build-and-test.yml | 64 +++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 .gitea/workflows/build-and-test.yml diff --git a/.gitea/workflows/build-and-test.yml b/.gitea/workflows/build-and-test.yml new file mode 100644 index 0000000..64476cc --- /dev/null +++ b/.gitea/workflows/build-and-test.yml @@ -0,0 +1,64 @@ +name: "Build and test" +on: + push: + branches: + - master + pull_request: + +jobs: + build: + runs-on: ubuntu-latest-personal + steps: + - uses: actions/checkout@v3 + + - name: Install latest nightly toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: nightly + override: true + components: rustfmt, clippy + + - name: Cache dependencies + uses: Swatinem/rust-cache@v2 + + - name: Build + run: cargo build --all-features --verbose + + check: + runs-on: ubuntu-latest-personal + steps: + - uses: actions/checkout@v3 + + - name: Install latest nightly toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: nightly + override: true + components: rustfmt, clippy + + - name: Cache dependencies + uses: Swatinem/rust-cache@v2 + + - name: Check code format + run: cargo fmt -- --check + + - name: Check clippy + run: cargo clippy --all-features -- --deny warnings + + test: + runs-on: ubuntu-latest-personal + steps: + - uses: actions/checkout@v3 + + - name: Install latest nightly toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: nightly + override: true + components: rustfmt, clippy + + - name: Cache dependencies + uses: Swatinem/rust-cache@v2 + + - name: Run tests + run: cargo test --all-features --verbose \ No newline at end of file