Skip to content

Commit

Permalink
Merge pull request #15 from chu11/build_test
Browse files Browse the repository at this point in the history
workflow: add basic sanity build workflow
  • Loading branch information
chu11 authored Aug 26, 2023
2 parents 6411c54 + 58e1f10 commit b90b16c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: build CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: configure
run: ./configure
- name: make
run: make

0 comments on commit b90b16c

Please sign in to comment.