Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikekre committed Oct 9, 2024
1 parent 191a13d commit 02c4730
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,29 @@ jobs:
continue-on-error: ${{ matrix.julia-version == 'nightly' }}
strategy:
matrix:
julia-version: ['1.10', '1', 'nightly']
julia-version: ['1.10'] #, '1', 'nightly']
os: ['ubuntu-latest']
include:
- os: windows-latest
julia-version: '1'
- os: macOS-latest
julia-version: '1'
# include:
# - os: windows-latest
# julia-version: '1'
# - os: macOS-latest
# julia-version: '1'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
# - uses: julia-actions/julia-runtest@v1
- name: JET tests
shell: julia --color=yes --project=@jet {0}
run: |
using Pkg
Pkg.add("JET")
Pkg.develop(path = pwd())
@show pwd()
@show readdir()
include("test/jet.jl")
if: ${{ matrix.os == 'ubuntu-latest' && matrix.julia-version != 'nightly' }}
- uses: julia-actions/julia-processcoverage@v1
Expand Down

0 comments on commit 02c4730

Please sign in to comment.