update thermal flow reonciliation checks to account for absorption ch… #5895
Workflow file for this run
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: 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.10'] | |
| julia-arch: [x64] | |
| os: [windows-latest, ubuntu-latest] | |
| 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(); Pkg.add(PackageSpec(name="GhpGhx", url="https://github.com/NatLabRockies/GhpGhx.jl.git")); using GhpGhx; cd("test"); include("runtests.jl")' | |
| shell: bash |