Restrict annotation functionality to versions of Julia it works on (#79)

* Restrict annotation functionality to versions of Julia it works on

see #76

* Update README.md
This commit is contained in:
Eric Hanson
2023-04-02 23:23:43 +02:00
committed by GitHub
parent 4867b265f3
commit 1aec431e02
2 changed files with 4 additions and 2 deletions

View File

@@ -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"))