Some checks failed
CI Demo / build (push) Successful in 4s
Docker Test / docker-ops (push) Successful in 5s
.NET Test / dotnet-test (push) Successful in 49s
Go Test / go-test (push) Successful in 20s
Java Test / java-hello (push) Successful in 31s
Julia Test / julia-test (push) Successful in 17s
Kotlin Test / kotlin-hello (push) Successful in 36s
Node.js Test / nodejs-test (push) Successful in 16s
Notebook Test / nb-test (push) Successful in 11s
PHP Test / php-test (push) Successful in 33s
Python Test / python-hello (push) Successful in 3s
R tests / test (push) Failing after 10m35s
Rust test / test (push) Failing after 23s
Scala Test / scala-test (push) Failing after 7s
Swift Test / swift-hello (push) Successful in 50s
11 lines
206 B
YAML
11 lines
206 B
YAML
name: Rust test
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
- run: cargo test --verbose
|