seymourLifeRust/.forgejo/workflows/demo.yaml
Blizzard Finnegan 3c8acca0fc
Some checks failed
Demo / Explore-CI (push) Failing after 2m14s
switch from gnu to musl
2023-06-06 14:34:16 -04:00

23 lines
634 B
YAML

name: Demo
run-name: ${{ github.actor }} is testing
on: [push]
jobs:
Explore-CI:
runs-on: self-hosted
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- name: Grab Rust toolchain
uses: https://github.com/actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: aarch64-unknown-linux-musl
override: true
- name: Run check
uses: https://github.com/actions-rs/cargo@v1
with:
command: check