bumblebee/.github/workflows/build.yaml
Didier 33ac3ae213
Some checks failed
build / build (push) Failing after 7s
fix: automation
2023-06-15 12:23:41 +02:00

24 lines
515 B
YAML

# build.yaml
# ---
# Builds the rust code and verifies that it compiles
name: build
on: [ 'push' ]
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: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --all