Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,25 @@ jobs:
make clean-docs docs
git diff --exit-code

- name: Run SQL and B-tree tests
run: make test
- name: Run SQL tests
run: make sql-test

- name: Run examples
run: make examples

- name: Run CLI tests
run: make cli-test

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v24.1

- name: List all changed files
run: |
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
echo "$file was changed"
done

macos-binary:
name: Build for macOS
runs-on: macos-latest
Expand Down