Upd ver and changelog; applied path by Helmut Grohne #26
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
sudo apt-get install -y libpcre2-dev valgrind | |
- name: Run tests | |
run: | | |
cd ./Release/ | |
make test | |
- name: Compile code | |
run: | | |
cd ./Release/ | |
CFLAGS="-Werror -Winline -std=gnu89" make |