Skip to content

Full rewrite of the crate #117

Full rewrite of the crate

Full rewrite of the crate #117

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
components: rustfmt, clippy
- name: Rust Version
run: rustup --version && rustc --version
- name: Build the limine-rs crate
run: cargo build --verbose
- name: Run clippy
run: cargo clippy --verbose --all-targets --all-features -- -D warnings
- name: Reformat code
uses: mbrobbel/rustfmt-check@master
with:
token: ${{ secrets.GITHUB_TOKEN }}