mirror of
https://github.com/Raymo111/i3lock-color.git
synced 2024-11-11 13:50:52 -05:00
Setup GH Actions workflow for build test
This commit is contained in:
parent
cc6ec23f94
commit
b0edc0c687
1 changed files with 33 additions and 0 deletions
33
.github/workflows/Build Test.yml
vendored
Normal file
33
.github/workflows/Build Test.yml
vendored
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
name: Build Test
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
paths:
|
||||||
|
- '!**.md'
|
||||||
|
- '!LICENSE'
|
||||||
|
- '!.gitignore'
|
||||||
|
pull_request:
|
||||||
|
branches: [ master ]
|
||||||
|
paths:
|
||||||
|
- '!**.md'
|
||||||
|
- '!LICENSE'
|
||||||
|
- '!.gitignore'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: autoreconf
|
||||||
|
run: autoreconf --force --install
|
||||||
|
- name: configure
|
||||||
|
run: ./configure --disable-sanitizers
|
||||||
|
- name: make
|
||||||
|
run: make
|
||||||
|
- name: make check
|
||||||
|
run: make check
|
||||||
|
- name: make distcheck
|
||||||
|
run: make distcheck
|
Loading…
Reference in a new issue