Skip to content

Fix issue 72

Fix issue 72 #32

Workflow file for this run

name: Testing
on:
push:
branches: "**"
pull_request:
branches: "**"
jobs:
BuildAndTest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Submodule init
run: git submodule init && git submodule update --recursive
- name: Install redis
run: |
sudo apt -y install redis && \
sudo systemctl start redis
- name: Build & run tests
run: cd test && make run