docs(readme): improve web query example formatting #81
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] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: sudo apt-get install -y libsqlite3-tcl sqlite3 tcl tcllib tdom | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build | |
run: make tinyfts | |
- name: Run tests | |
run: make test | |