Some checks failed
build / build (push) Failing after 12s
In my attempt to get the workflow actually building....
22 lines
376 B
YAML
22 lines
376 B
YAML
name: build
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Prepare apt
|
|
run: sudo apt-get update
|
|
- name: Install dependencies
|
|
run: sudo apt-get install libbsd-dev libsystemd-dev
|
|
|
|
- name: Run make
|
|
run: make
|