Create rust-macos-latest

This commit is contained in:
KD
2025-02-01 21:52:35 -05:00
committed by GitHub
parent f3d76c9336
commit 91e868d605
+22
View File
@@ -0,0 +1,22 @@
name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose