When using adaptive timestep, don't force fixed output times by default #3610
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
# Based on example from https://github.com/julia-actions/julia-runtest | |
name: Run tests | |
on: [push, pull_request, workflow_dispatch] | |
permissions: | |
actions: write | |
contents: read | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest] | |
fail-fast: false | |
timeout-minutes: 50 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: '1.10' | |
- uses: julia-actions/cache@v2 | |
- uses: julia-actions/julia-buildpkg@v1 | |
with: | |
project: 'moment_kinetics/' | |
# The following is copied and simplified from | |
# https://github.com/julia-actions/julia-runtest/blob/master/action.yml | |
# in order to pass customised arguments to `Pkg.test()` | |
- run: | | |
julia --check-bounds=yes --color=yes --depwarn=yes --project=moment_kinetics/ -e 'import Pkg; Pkg.test(; test_args=["--ci", "--force-optional-dependencies"])' | |
shell: bash |