Merge pull request #3 from beve-org/subarray #4
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: julia-actions/setup-julia@v1 | |
| with: | |
| version: '1.11' | |
| - uses: julia-actions/cache@v1 | |
| - name: Install dependencies | |
| run: julia --project -e 'import Pkg; Pkg.instantiate()' | |
| - name: Run tests | |
| run: julia --project -e 'import Pkg; Pkg.test()' |