Try build again
All checks were successful
/ test (push) Successful in 53s

This commit is contained in:
Blizzard Finnegan 2023-06-06 11:46:19 -04:00
parent 20b9a3ddca
commit e144dcfb13
Signed by: blizzardfinnegan
GPG key ID: 61C1E13067E0018E

View file

@ -0,0 +1,30 @@
on: [push]
name: Test build
jobs:
amd_check:
name: x86_64 Check
runs-on: [ self-hosted,x64 ]
steps:
- uses: actions/checkout@v2
- uses: https://github.com/actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: https://github.com/actions-rs/cargo@v1
with:
command: check
arm_check:
name: ARM64 Check
runs-on: [ self-hosted,arm64 ]
steps:
- uses: actions/checkout@v2
- uses: https://github.com/actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: https://github.com/actions-rs/cargo@v1
with:
command: check