Skip to content

Commit

Permalink
feat: build ITree in CI
Browse files Browse the repository at this point in the history
Thus ensuring we don't break ITree when making changes to the framework
  • Loading branch information
alexkeizer committed Oct 11, 2024
1 parent 9affd6a commit f2eae0f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,17 @@ jobs:
~/.elan/bin/lean --version
echo "$HOME/.elan/bin" >> $GITHUB_PATH
- name: Compile Library 🧐
- name: Compile QpfTypes Library 🧐
run: |
lake -R exe cache get
lake -R build
- name: Compile Tests
- name: Compile Tests 🧐
run: |
lake -R exe cache get
lake -R build +Test
lake -R build +Test
- name: Compile ITree Library 🧐
run: |
lake -R exe cache get
lake -R build +ITree

0 comments on commit f2eae0f

Please sign in to comment.