diff --git a/.forgejo/workflows/check.yaml b/.forgejo/workflows/check.yaml index e273b03..70a6a35 100644 --- a/.forgejo/workflows/check.yaml +++ b/.forgejo/workflows/check.yaml @@ -5,17 +5,25 @@ on: - main jobs: + checkout: + runs-on: docker + container: + image: docker.io/_/node:20-alpine3.19 + steps: + - uses: actionx/checkout@v4 + clippy: + needs: [checkout] runs-on: docker container: image: docker.io/asonix/rust-builder:latest-linux-amd64 steps: - - uses: actions/checkout@v4 - run: rustup component add clippy - run: cargo clippy --no-default-features -- -D warnings - run: cargo clippy --no-default-features --features io-uring -- -D warnings tests: + needs: [checkout] runs-on: docker container: image: docker.io/asonix/rust-builder:latest-linux-amd64