chore: bump version to 0.6.0 #44
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, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| julia-version: ['1.10', '1'] | |
| os: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: ${{ matrix.julia-version }} | |
| # Simulation-based tests need a built UnetStack 7 distribution (UNET_HOME). | |
| # No public UnetStack 7 release is downloadable yet, so CI runs only the | |
| # tests that do not need a simulator. Once a release is available, download | |
| # and unpack it here, set UNET_HOME, and add a Java setup step. | |
| - name: Test | |
| run: julia test/test.jl |