Try to resolve issues with Debian changelog. #109
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build/Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
OS: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install autopoint & gettext | |
run: sudo apt install autopoint gettext | |
- name: run autoreconf | |
run: ./autogen.sh | |
- name: configure | |
run: ./configure --enable-all-extensions --with-included-regex | |
- name: make | |
run: make | |
- name: make check | |
run: make check |