Skip to content

Commit

Permalink
add failing test for version > v1.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hhaensel committed Nov 28, 2024
1 parent e70bcd2 commit 922ce49
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 16 deletions.
18 changes: 2 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
- 'nightly'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
# - macOS-latest
# - windows-latest
arch:
- x64
steps:
Expand All @@ -40,17 +40,3 @@ jobs:
exit 0 # Ignore the error to keep the green checkmark going
fi
exit 1 # If it's not an optional job, fail the job
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: '1'
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
run: julia --project=docs/ docs/make.jl
4 changes: 4 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,8 @@ using Test

@testset "Hello" begin
@test 1 == 1
end

@testset "World" begin
@test VERSION <= v"1.11.1"
end

0 comments on commit 922ce49

Please sign in to comment.