Some checks failed
CI Demo / build (push) Successful in 3s
Docker Test / docker-ops (push) Successful in 4s
Go Test / go-test (push) Has been cancelled
Java Test / java-hello (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
Rust Test / rust-test (push) Has been cancelled
.NET Test / dotnet-test (push) Has been cancelled
Swift Test / swift-hello (push) Has been cancelled
19 lines
348 B
YAML
19 lines
348 B
YAML
name: Rust Test
|
|
on: [push]
|
|
|
|
jobs:
|
|
rust-test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
override: true
|
|
components: clippy, rustfmt
|
|
|
|
- name: Run tests
|
|
run: cargo test --verbose
|