Skip to content
Snippets Groups Projects
Commit 4e841231 authored by Riccardo Boero's avatar Riccardo Boero :innocent:
Browse files

Renoved test phase

parent 94ed7a8d
No related branches found
No related tags found
No related merge requests found
image: julia:latest
stages:
#- test # Stage for running tests: dind not allowed on this instance CI runners, no need to find other CI solutions, run tests locally
- documentation
- deploy
# Test stage for running unit tests with Docker
test:
stage: test
variables:
JULIA_PROJECT: "." # Ensure that Julia uses the project environment
before_script:
- julia -e 'using Pkg; Pkg.instantiate()' # Install required packages
script:
- julia --project=. -e 'using Test; include("test/runtests.jl")' # Run the tests
only:
- main
# Documentation stage
build documentation:
stage: documentation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment