Add pang15 to special Pang EC type #243
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
run: rustup show | |
- name: clippy | |
env: | |
BASEDIR: "." | |
run: cargo clippy --target x86_64-unknown-uefi -- -D warnings | |
continue-on-error: true | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt install --yes make mtools parted | |
rustup show | |
- name: Build UEFI application | |
run: make |