Skip to content

Initial start of github actions to build project #2

Initial start of github actions to build project

Initial start of github actions to build project #2

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
targets: riscv64gc-unknown-none-elf
- name: Build project
run: cargo build