Allow selectable backwards compatibility for invalid variables #101
Workflow file for this run
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" ] | |
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: make test | |
- name: Test bootstrap jimsh | |
run: ./test-bootstrap-jim |