packager/.github/workflows/bootpkg.yaml
Didier a07a53dabf
All checks were successful
/ build (push) Successful in 30s
ci: set manifest path
2023-07-16 19:15:12 +02:00

22 lines
527 B
YAML

on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install dependencies
run: |
apt update -y
apt install -y curl gcc g++ make
- uses: https://github.com/actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: https://github.com/actions-rs/cargo@v1
with:
command: check
args: --manifest-path bootpkg/Cargo.toml --verbose --all