Skip to content

Commit

Permalink
Merge pull request #637 from finch-tensor/kbd-galley-CI
Browse files Browse the repository at this point in the history
Add back tests for Galley to CI
  • Loading branch information
kylebd99 authored Nov 14, 2024
2 parents a3e0926 + 8e0b06c commit 9cd0895
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,28 @@ jobs:
run: |
cd finch-tensor-python
FINCH_REPO_PATH="${GITHUB_WORKSPACE}" poetry run pytest tests/
galley-tests:
name: Galley Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Finch.jl
uses: actions/checkout@v4
- name: Setup Julia
uses: julia-actions/setup-julia@v1
with:
version: '1'
- name: Build Finch.jl package
uses: julia-actions/julia-buildpkg@v1
- name: Checkout Galley
uses: actions/checkout@v4
with:
repository: kylebd99/Galley
ref: 'main'
path: 'Galley'
- name: Run Galley tests
run: |
pwd
ls
cd Galley
julia --project=test/ -e 'import Pkg; Pkg.develop(path=".."); Pkg.develop(path="."); include("test/runtests.jl")'

0 comments on commit 9cd0895

Please sign in to comment.