bootproof/.github/workflows/rust.yml

24 lines
451 B
YAML
Raw Normal View History

2020-07-15 14:30:08 -07:00
name: Rust
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rust-src
- name: Install cargo-xbuild
run: cargo install cargo-xbuild
- name: build
run: cargo xbuild --target x86_64-unknown-uefi