bulk update from silicormosia/clima-land-v0.1 #47
Workflow file for this run
This file contains 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: JuliaStable | |
on: | |
merge_group: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
name: ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
steps: | |
- name: Set up Actions | |
uses: actions/checkout@v1 | |
- name: Set up Julia | |
uses: julia-actions/setup-julia@v1 | |
with: | |
version: "1" | |
- name: Use Github Registry for Linux and Mac-OS | |
if: runner.os != 'Windows' | |
run: | | |
julia -e 'using Pkg; Pkg.Registry.rm("General"); Pkg.Registry.add(RegistrySpec(url="https://github.com/JuliaRegistries/General"))' | |
julia --project -e 'using Pkg; Pkg.instantiate();' | |
- name: Use Github Registry for Windows | |
if: runner.os == 'Windows' | |
run: | | |
julia -e 'using Pkg; Pkg.Registry.rm(\"General\"); Pkg.Registry.add(RegistrySpec(url=\"https://github.com/JuliaRegistries/General\"))' | |
julia --project -e 'using Pkg; Pkg.instantiate();' | |
- name: Run Tests | |
uses: julia-actions/julia-runtest@latest |