seymourLifeRust/.forgejo/workflows/demo.yaml
Blizzard Finnegan 573df9a8e3
Some checks are pending
Demo / Explore-CI (push) Has started running
Add build-essential
2023-06-06 15:07:40 -04:00

23 lines
653 B
YAML

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