seymourLifeRust/.forgejo/workflows/demo.yaml
Blizzard Finnegan 69cd1ef86f
All checks were successful
Demo / Explore-CI (push) Successful in 1m51s
Add cargo actions?
2023-06-06 14:23:52 -04:00

18 lines
469 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: Run cargo check
uses: https://github.com/actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true