test commit - keep only event test #134
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: Makefile CI | |
on: | |
push: | |
branches: [ "master", "master-next" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: sudo apt install libsqlite3-dev libhiredis-dev | |
- name: configure | |
run: ./configure --maintainer --allextmod --disable-docs | |
- name: Build | |
run: make | |
- name: Run check | |
run: testverbose=1 make test >test.log | |
- name: Check output | |
run: cat test.log | |
- name: Test bootstrap jimsh | |
run: ./test-bootstrap-jim |