Skip to content

Install sqlite3 in makefile workflow #3

Install sqlite3 in makefile workflow

Install sqlite3 in makefile workflow #3

Workflow file for this run

name: Makefile CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install apt deps
run: sudo apt-get install -y sqlite3
- name: Run system tests
run: sudo apt-get install -y sqlite3 && \
./system-test mkdb && diff -u <(printf "629\n62\n629\n") \
<(echo "select count(*) from tick;" \
" select count(*) from relation;" \
" select count(*) from attr;" | \
sqlite3 test/observatory.db)