Some checks failed
build / build (push) Failing after 5s
ensure that the dependencies needed to build the package are installed to the container used to run the workflow.
20 lines
317 B
YAML
20 lines
317 B
YAML
name: build
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install dependencies
|
|
run: sudo apt-get install libbsd-dev libsystemd-dev
|
|
|
|
- name: Run make
|
|
run: make
|