From 12db99c55fe690818f4f299a4e592b03c546621d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fran=C3=A7ois=20Laurent?= <francois.laurent@posteo.net>
Date: Fri, 30 Jun 2023 17:44:45 +0200
Subject: [PATCH] dropping julia 1.6 support

---
 .gitlab-ci.yml | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index df38497..8d36e3b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,7 +3,7 @@
     - |
       julia --project=@. -e '
         using Pkg
-        Pkg.build()
+        Pkg.instantiate()
         Pkg.test(coverage=true)'
 .coverage:
   coverage: /Test coverage (\d+\.\d+%)/
@@ -16,10 +16,6 @@
         c, t = get_summary(process_folder())
         using Printf
         @printf "Test coverage %.2f%%\n" 100c / t'
-Julia 1.6:
-  image: julia:1.6
-  extends:
-    - .script
 Julia 1.9:
   image: julia:1.9
   extends:
-- 
GitLab