Skip to content

fixed scenario.jl for processheat to include lat-long #3722

fixed scenario.jl for processheat to include lat-long

fixed scenario.jl for processheat to include lat-long #3722

Workflow file for this run

name: Run tests
on:
push:
paths-ignore: [README.md, CHANGELOG.md]
pull_request:
types: [opened, reopened, ready_for_review]
jobs:
highstests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ['1.8']
julia-arch: [x64]
# os: [ubuntu-latest, windows-latest, macOS-11]
os: [windows-latest, macOS-11]
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/julia-buildpkg@latest
# - uses: mxschmitt/action-tmate@v3 # for interactive debugging
- run: julia --project=. -e 'using Pkg; Pkg.activate("test"); Pkg.rm("Xpress"); Pkg.activate("."); using TestEnv; TestEnv.activate(); cd("test"); include("runtests.jl")'
shell: bash