update(CI): remove julia 1.10 test

Manifest.toml was added and it includes StyledString, which was introduced in julia 1.11 and is not available for 1.10
This commit is contained in:
Wataru Otsubo 2024-12-10 03:36:29 +01:00
parent 878a18d5a4
commit 1f6dcf2f24

View file

@ -27,11 +27,11 @@ cache:
c, t = get_summary(process_folder()) c, t = get_summary(process_folder())
using Printf using Printf
@printf "Test coverage %.2f%%\n" 100c / t' @printf "Test coverage %.2f%%\n" 100c / t'
Julia 1.10: # Julia 1.10:
image: julia:1.10 # image: julia:1.10
extends: # extends:
- .script # - .script
- .coverage # - .coverage
Julia 1.11: Julia 1.11:
image: julia:1.11 image: julia:1.11
extends: extends: