Skip to content

Setup gitpod prebuilds (#24) #91

Setup gitpod prebuilds (#24)

Setup gitpod prebuilds (#24) #91

Workflow file for this run

name: Rust
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose --manifest-path command/Cargo.toml
- name: Run tests
run: cargo test --verbose --manifest-path command/Cargo.toml
- name: Check formatting
run: cargo fmt --manifest-path command/Cargo.toml -- --check