mirror of
https://github.com/julia-actions/julia-runtest.git
synced 2026-02-27 02:16:55 +08:00
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:
@@ -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"))
|
||||
|
||||
Reference in New Issue
Block a user