Skip to content

Added instructions to build the crate in README.md #5

Added instructions to build the crate in README.md

Added instructions to build the crate in README.md #5

Workflow file for this run

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install UEFI target
run: rustup target add x86_64-unknown-uefi
- name: Build
run: cargo build --verbose --target x86_64-unknown-uefi