Skip to content

Commit

Permalink
Add CI with GitHub Actions
Browse files Browse the repository at this point in the history
For now we only do a build and distcheck. The check target is also run
but there are no checks yet.
  • Loading branch information
rodarima committed Dec 11, 2023
1 parent 48e22e5 commit 9aec197
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Install FLTK
run: sudo apt install -y libfltk1.3-dev
- name: autogen
run: ./autogen.sh
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck

0 comments on commit 9aec197

Please sign in to comment.