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

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