23 lines
644 B
YAML
23 lines
644 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: List files in the repository
|
|
run: |
|
|
apt install -y librust-libudev-sys-dev
|
|
- name: Grab Rust toolchain
|
|
uses: https://github.com/actions-rs/toolchain@v1
|
|
with:
|
|
profile: complete
|
|
toolchain: nightly
|
|
target: aarch64-unknown-linux-musl
|
|
override: true
|
|
- name: Run check
|
|
uses: https://github.com/actions-rs/cargo@v1
|
|
with:
|
|
command: check
|