Skip to content

Update rust.yml

Update rust.yml #34

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build-macOS:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cd "Rust Middleware" && cargo build --release --verbose
- name: Run tests
run: cd "Rust Middleware" && cargo test --verbose
- name: Upload Build Artifacts
uses: actions/[email protected]
with:
name: "macOS"
path: "Rust Middleware/target/x86_64-apple-darwin/*"