seymourLifeRust/.forgejo/workflows/demo.yaml
Workflow config file is invalid. Please check your config file: yaml: line 8: mapping values are not allowed in this context
2023-06-06 13:47:23 -04:00

33 lines
914 B
YAML

on: [push]
name: Check-Build
jobs:
amd_check:
name: x86_64-Check
runs-on: [ self-hosted,x64 ]
steps:
- name: Checkout repo code
uses: actions/checkout@v3
#- 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:
- name: Checkout repo code
uses: actions/checkout@v3
#- 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