Skip to content

Commit

Permalink
Add a CI workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Michał Górny <[email protected]>
  • Loading branch information
mgorny committed May 20, 2022
1 parent 1d158e3 commit 61edabe
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Autoreconf
run: autoreconf -vi
- name: Configure
run: ./configure -C
- name: Distcheck
run: make -j$(nproc) distcheck

0 comments on commit 61edabe

Please sign in to comment.