Add .gitea/workflows/julia-test.yml
Some checks failed
CI Demo / build (push) Successful in 3s
Docker Test / docker-ops (push) Successful in 5s
Go Test / go-test (push) Has been cancelled
Java Test / java-hello (push) Has been cancelled
.NET Test / dotnet-test (push) Has been cancelled
Julia Test / julia-test (push) Has been cancelled
Kotlin Test / kotlin-hello (push) Has been cancelled
Node.js Test / nodejs-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
Some checks failed
CI Demo / build (push) Successful in 3s
Docker Test / docker-ops (push) Successful in 5s
Go Test / go-test (push) Has been cancelled
Java Test / java-hello (push) Has been cancelled
.NET Test / dotnet-test (push) Has been cancelled
Julia Test / julia-test (push) Has been cancelled
Kotlin Test / kotlin-hello (push) Has been cancelled
Node.js Test / nodejs-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:
21
.gitea/workflows/julia-test.yml
Normal file
21
.gitea/workflows/julia-test.yml
Normal file
@@ -0,0 +1,21 @@
|
||||
name: Julia Test
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
julia-test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Julia
|
||||
uses: julia-actions/setup-julia@v1
|
||||
with:
|
||||
version: '1.9'
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
julia -e 'using Pkg; Pkg.instantiate()'
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
julia -e 'using Pkg; Pkg.test()'
|
Reference in New Issue
Block a user