File tree Expand file tree Collapse file tree 2 files changed +6
-15
lines changed Expand file tree Collapse file tree 2 files changed +6
-15
lines changed Original file line number Diff line number Diff line change 1- name : CI
1+ name : Run Julia Base Tests
22on :
33 pull_request :
4- push :
5- branches :
6- - master
7- tags : ' *'
84jobs :
95 test :
106 name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
139 fail-fast : false
1410 matrix :
1511 version :
16- - ' 1.0'
17- - ' 1'
1812 - ' nightly'
1913 os :
2014 - ubuntu-latest
21- - macOS-latest
22- - windows-latest
2315 arch :
2416 - x64
2517 env :
4133 ${{ runner.os }}-test-
4234 ${{ runner.os }}-
4335 - uses : julia-actions/julia-buildpkg@v1
44- - uses : julia-actions/julia-runtest@v1
45- - uses : julia-actions/julia-processcoverage@v1
46- - uses : codecov/codecov-action@v1
47- with :
48- file : lcov.info
36+ - name : Test Julia Base
37+ run : |
38+ julia --project test/juliatests.jl
Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ const testdir = joinpath(juliadir, "test")
1212if isdir (testdir)
1313 include (joinpath (testdir, " choosetests.jl" ))
1414else
15- @error " Julia's test/ directory not found, can't run Julia tests"
15+ run (` git clone https://github.com/JuliaLang/julia.git` )
16+ run (` cp -r julia/test $testdir ` )
1617end
1718
1819function test_path (test)
You can’t perform that action at this time.
0 commit comments