Skip to content

Initial commit

Initial commit #2

Workflow file for this run

name: Rust
on:
push:
branches: ["main", "develop"]
pull_request:
types: [opened, reopened, synchronize]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --all-features