Some checks failed
build / build (push) Failing after 6s
Adding initial test workflow for building the project.
16 lines
220 B
YAML
16 lines
220 B
YAML
name: build
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Run make
|
|
run: make
|