Create build.yml (#117)

Support for building pull requests with github actions
This commit is contained in:
Thomas Arp 2022-11-06 23:41:31 +01:00 committed by GitHub
parent bde600051d
commit c9ebc7174c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

19
.github/workflows/build.yml vendored Normal file
View file

@ -0,0 +1,19 @@
name: C/C++ CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: configure
run: ./configure
- name: build
run: cd src && touch .accepted && make