Update .gitea/workflows/julia-test.yml
Some checks failed
CI Demo / build (push) Successful in 5s
Docker Test / docker-ops (push) Successful in 6s
.NET Test / dotnet-test (push) Failing after 19s
Go Test / go-test (push) Failing after 5s
Java Test / java-hello (push) Successful in 29s
Kotlin Test / kotlin-hello (push) Has been cancelled
Node.js Test / nodejs-test (push) Has been cancelled
Notebook Test / nb-test (push) Has been cancelled
Julia Test / julia-test (push) Has been cancelled
PHP Test / php-test (push) Has been cancelled
Python Test / python-hello (push) Has been cancelled
R Test / r-cmdcheck (push) Has been cancelled
Rust Test / rust-test (push) Has been cancelled
Scala Test / scala-test (push) Has been cancelled
Swift Test / swift-hello (push) Has been cancelled

This commit is contained in:
2025-08-07 19:19:56 +00:00
parent f264509b7a
commit 43de098e5b

View File

@@ -29,17 +29,17 @@ jobs:
# Create a tiny project + test so the job still proves the runner works
mkdir -p test
cat > Project.toml <<'EOF'
name = "HelloCI"
uuid = "f0f9c0b0-0000-4e00-9000-000000000001"
version = "0.1.0"
name = "HelloCI"
uuid = "f0f9c0b0-0000-4e00-9000-000000000001"
version = "0.1.0"
[deps]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
EOF
cat > test/runtests.jl <<'EOF'
using Test
@test 2 + 2 == 4
println("Hello, Julia!")
EOF
julia -e 'using Pkg; Pkg.activate("."); Pkg.test()'
fi
[deps]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
EOF
cat > test/runtests.jl <<'EOF'
using Test
@test 2 + 2 == 4
println("Hello, Julia!")
EOF
julia -e 'using Pkg; Pkg.activate("."); Pkg.test()'
fi