mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-12-22 19:31:35 +00:00
Add checks
This commit is contained in:
parent
b1af7c4e01
commit
41357d1739
1 changed files with 14 additions and 0 deletions
|
@ -24,3 +24,17 @@ jobs:
|
||||||
- run: |
|
- run: |
|
||||||
git clone ${{ env.github_server_url }}/${{ env.github_repository }} .
|
git clone ${{ env.github_server_url }}/${{ env.github_repository }} .
|
||||||
cargo test
|
cargo test
|
||||||
|
|
||||||
|
checks:
|
||||||
|
runs-on: docker
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
- tag: latest-linux-amd64
|
||||||
|
- tag: latest-linux-arm32v7
|
||||||
|
- tag: latest-linux-arm64v8
|
||||||
|
container:
|
||||||
|
image: docker.io/asonix/rust-builder:${{ matrix.tag }}
|
||||||
|
steps:
|
||||||
|
- run: |
|
||||||
|
git clone ${{ env.github_server_url }}/${{ env.github_repository }} .
|
||||||
|
cargo check
|
||||||
|
|
Loading…
Reference in a new issue