Rename run_sim, save_snapshot, and load_snapshot to run, save and load. #105
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: CI | |
on: | |
push: | |
branches: | |
- main | |
tags: ['*'] | |
pull_request: | |
concurrency: | |
# Skip intermediate builds: always. | |
# Cancel intermediate builds: only if it is a pull request build. | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
jobs: | |
test: | |
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- '1.9' | |
- '~1.10.0-0' | |
- 'nightly' | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
arch: | |
- x64 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- uses: julia-actions/cache@v1 | |
- name: Develop packages | |
run: | | |
julia --project=test -e ' | |
using Pkg | |
Pkg.develop([PackageSpec(path=pwd())]) | |
Pkg.instantiate()' | |
- uses: julia-actions/julia-buildpkg@v1 | |
with: | |
project: test | |
- name: Print package status | |
run: | | |
julia --project=test -e ' | |
using InteractiveUtils | |
versioninfo() | |
using Pkg | |
Pkg.status(;mode=Pkg.PKGMODE_MANIFEST)' | |
- name: Run tests | |
run: | | |
cd test && | |
julia --project --color=yes --depwarn=yes --warn-overwrite=yes --warn-scope=yes --check-bounds=yes runtests.jl |