tbamud/.github/workflows/build.yml
Thomas Arp c9ebc7174c
Create build.yml (#117)
Support for building pull requests with github actions
2022-11-06 23:41:31 +01:00

19 lines
294 B
YAML

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