From b663651c76ee0ba16089a73f4dc2607d9b11c5d3 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 30 Jul 2024 07:11:27 +0100 Subject: [PATCH] build: add forgejo workflow push-next --- .forgejo/workflows/push-next.yml | 44 ++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .forgejo/workflows/push-next.yml diff --git a/.forgejo/workflows/push-next.yml b/.forgejo/workflows/push-next.yml new file mode 100644 index 0000000..6245ec3 --- /dev/null +++ b/.forgejo/workflows/push-next.yml @@ -0,0 +1,44 @@ +name: Rust + +on: + push: + branches: ["next"] + pull_request: + branches: ["main"] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + runs-on: docker + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Format + uses: https://git.kemitix.net/kemitix/rust@v0.3.1 + with: + args: fmt --all -- --check + + # - name: Machete + # uses: https://github.com/bnjbvr/cargo-machete@v0.6.2 + + - name: Clippy + uses: https://git.kemitix.net/kemitix/rust@v0.3.1 + with: + args: clippy + + - name: Build + uses: https://git.kemitix.net/kemitix/rust@v0.3.1 + with: + args: build + + - name: Test + uses: https://git.kemitix.net/kemitix/rust@v0.3.1 + with: + args: test --no-fail-fast + + - name: Integration + run: ./test.sh