Skip to content

Commit

Permalink
Restrict annotation functionality to versions of Julia it works on
Browse files Browse the repository at this point in the history
  • Loading branch information
ericphanson authored Apr 2, 2023
1 parent 4867b26 commit 14fa6d5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ runs:
shell: bash
- name: Install dependencies in their own (shared) environment
run: |
if VERSION > v"1.8pre"
# Functionality only currently works on a narrow range of Julia versions... see #76
if v"1.8pre" < VERSION < v"1.9.0-beta3"
using Pkg
Pkg.activate("tests-logger-env"; shared=true)
Pkg.add(Pkg.PackageSpec(name="GitHubActions", version="0.1"))
Expand Down

0 comments on commit 14fa6d5

Please sign in to comment.