Merge pull request #310 from penberg/rows-v2 #827
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: [ "main" ] | |
pull_request: | |
merge_group: | |
branches: [ "main" ] | |
jobs: | |
maketest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: get TCL | |
run: sudo apt-get install -y tcl8.6-dev | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v2 | |
- name: Install Wasmpack | |
uses: jetli/[email protected] | |
with: | |
version: 'latest' | |
- name: configure | |
run: ./configure | |
- name: Run tests | |
run: make test | |
# Rust tests are run under maketestwasm | |
- name: Run API tests | |
run: make testlibsql |