seymourLifeRust/.forgejo/workflows/buildTest.yaml
Workflow config file is invalid. Please check your config file: yaml: line 7: mapping values are not allowed in this context
Blizzard Finnegan ae8a50fc31
Some checks are pending
/ test (push) Has started running
Add v1 of test build
2023-06-06 11:16:43 -04:00

30 lines
794 B
YAML

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