mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-20 11:21:14 +00:00
Just git clone
This commit is contained in:
parent
a3ae253bf1
commit
b60b7b5a30
1 changed files with 4 additions and 13 deletions
|
@ -5,31 +5,22 @@ on:
|
|||
- main
|
||||
|
||||
jobs:
|
||||
checkout:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: docker.io/node:20-bookworm
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: ls
|
||||
|
||||
clippy:
|
||||
needs: [checkout]
|
||||
runs-on: docker
|
||||
container:
|
||||
image: docker.io/asonix/rust-builder:latest-linux-amd64
|
||||
steps:
|
||||
- run: |
|
||||
ls
|
||||
git clone ${{ env.github_server_url }}/${{ env.github_repository }}
|
||||
rustup component add clippy
|
||||
cargo clippy --no-default-features -- -D warnings
|
||||
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
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: cargo test
|
||||
- run: |
|
||||
git clone ${{ env.github_server_url }}/${{ env.github_repository }}
|
||||
cargo test
|
||||
|
|
Loading…
Reference in a new issue