mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-20 11:21:14 +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: |
|
||||
git clone ${{ env.github_server_url }}/${{ env.github_repository }} .
|
||||
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