From c9ebc7174c64d2f5c3282799000d1b37df96c1b5 Mon Sep 17 00:00:00 2001 From: Thomas Arp <357770+welcor@users.noreply.github.com> Date: Sun, 6 Nov 2022 23:41:31 +0100 Subject: [PATCH] Create build.yml (#117) Support for building pull requests with github actions --- .github/workflows/build.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..717fe7a --- /dev/null +++ b/.github/workflows/build.yml @@ -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