Skip to content

Commit 94c1ab9

Browse files
authored
Use 'min' Julia version in ci.yml (#152)
* Use 'min' Julia version in ci.yml Make the CI test on lowest supported version as stated in Project.toml. Should also serve as an indicator if the minimum Julia version needs to be bumped * Remove commented out doc step in ci.yml There's no docs site for this project, and it doesn't look to be planned
1 parent 6912105 commit 94c1ab9

1 file changed

Lines changed: 1 addition & 18 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
version:
18-
- '1.0'
18+
- 'min'
1919
- '1' # automatically expands to the latest stable 1.x release of Julia
2020
- 'nightly'
2121
os:
@@ -40,20 +40,3 @@ jobs:
4040
with:
4141
files: lcov.info
4242
token: ${{ secrets.CODECOV_TOKEN }}
43-
# docs:
44-
# name: Documentation
45-
# runs-on: ubuntu-latest
46-
# steps:
47-
# - uses: actions/checkout@v6
48-
# - uses: julia-actions/setup-julia@v2
49-
# with:
50-
# version: '1'
51-
# - run: |
52-
# julia --project=docs -e '
53-
# using Pkg
54-
# Pkg.develop(PackageSpec(path=pwd()))
55-
# Pkg.instantiate()'
56-
# - run: julia --project=docs docs/make.jl
57-
# env:
58-
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
59-
# DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

0 commit comments

Comments
 (0)