mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-01 10:09:57 +00:00
46 lines
1.4 KiB
YAML
46 lines
1.4 KiB
YAML
on:
|
|
push:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
clippy:
|
|
runs-on: docker
|
|
container:
|
|
image: docker.io/asonix/rust-builder:latest-linux-amd64
|
|
steps:
|
|
- run: |
|
|
git clone ${{ env.github_server_url }}/${{ env.github_repository }} .
|
|
git checkout ${{ env.github_sha }}
|
|
rustup component add clippy
|
|
cargo clippy --no-default-features -- -D warnings
|
|
cargo clippy --no-default-features --features io-uring -- -D warnings
|
|
|
|
tests:
|
|
runs-on: docker
|
|
container:
|
|
image: docker.io/asonix/rust-builder:latest-linux-amd64
|
|
steps:
|
|
- run: |
|
|
git clone ${{ env.github_server_url }}/${{ env.github_repository }} .
|
|
git checkout ${{ env.github_sha }}
|
|
cargo test
|
|
|
|
check:
|
|
strategy:
|
|
matrix:
|
|
- image: docker.io/asonix/rust-builder:latest-linux-amd64
|
|
target: x86_64-unknown-linux-musl
|
|
- image: docker.io/asonix/rust-builder:latest-linux-arm32v7
|
|
target: armv7-unkown-linux-musleabihf
|
|
- image: docker.io/asonix/rust-builder:latest-linux-arm64v8
|
|
target: aarch64-unkown-linux-musl
|
|
runs-on: docker
|
|
container:
|
|
image: ${{ matrix.image }}
|
|
steps:
|
|
- run: |
|
|
git clone ${{ env.github_server_url }}/${{ env.github_repository }} .
|
|
git checkout ${{ env.github_sha }}
|
|
cargo check --target ${{ matrix.target }}
|