Skip to content

Commit 2f6c982

Browse files
authored
Run CI on Julia nightly and Julia 1 (#573)
* Run CI on Julia nightly and Julia 1 * Update bors.toml * Fix a bug
1 parent e6697c4 commit 2f6c982

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/ci.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ matrix.os }}
1717
strategy:
1818
matrix:
19-
julia-version: ["1"]
19+
julia-version: ["1", "nightly"]
2020
julia-arch: [x64]
2121
os: [macos-latest, ubuntu-latest]
2222
fail-fast: false
@@ -28,7 +28,6 @@ jobs:
2828
- if: startsWith(matrix.os, 'ubuntu')
2929
run: |
3030
sudo apt-get update
31-
# sudo apt-get install pgf
3231
sudo apt-get install pdf2svg poppler-utils texlive-binaries texlive-latex-base texlive-latex-extra texlive-luatex texlive-pictures tree
3332
- if: startsWith(matrix.os, 'macOS')
3433
run: |

bors.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ status = [
66
"CI",
77
"Compatibility",
88
"Docs",
9-
# "VersionVigilante",
9+
"VersionVigilante",
1010
# "codecov/patch",
1111
# "codecov/project",
1212
]

ci/github_actions/compatibility.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ cd ~/environments/environment-extra-first
2121
touch Project.toml
2222
rm -rf ~/.julia
2323
julia --project -e 'import Pkg; Pkg.develop(Pkg.PackageSpec(url="https://github.com/bcbi/PredictMDExtra.jl.git"))'
24-
julia --project -e 'import Pkg; Pkg.develop(Pkg.PackageSpec(path=ENV["TRAVIS_BUILD_DIR"]))'
24+
julia --project -e 'import Pkg; Pkg.develop(Pkg.PackageSpec(path=ENV["GITHUB_WORKSPACE"]))'
2525
julia --project -e 'import Pkg; Pkg.develop(Pkg.PackageSpec(url="https://github.com/bcbi/PredictMDFull.jl.git"))'

0 commit comments

Comments
 (0)