Skip to content

Commit

Permalink
Only run B-tree tests on changed files
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotchance committed Aug 7, 2022
1 parent 8c917cb commit 5268a66
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,21 @@ jobs:
git diff --exit-code
- name: Run SQL tests
run: make test
run: make sql-test

- name: Run examples
run: make examples

- name: Get changed files
id: changed-files
uses: tj-actions/[email protected]

- 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

0 comments on commit 5268a66

Please sign in to comment.