seymourLifeRust/.forgejo/workflows/demo.yaml
Blizzard Finnegan 4e1c6c992c
Some checks failed
Demo / Explore-CI (push) Failing after 6s
see if cross-compile works
2023-06-06 15:22:54 -04:00

23 lines
650 B
YAML

name: Demo
run-name: ${{ github.actor }} is testing
on: [push]
jobs:
Explore-CI:
runs-on: amd64
steps:
- name: Grab misc. dependencies
run: |
apt install -y librust-libudev-sys-dev build-essential
- name: Check out repository code
uses: actions/checkout@v3
- name: Grab Rust toolchain
uses: https://github.com/actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: aarch64-unknown-linux-gnu
override: true
- name: Run check
uses: https://github.com/actions-rs/cargo@v1
with:
command: check