From 91e868d605ebe9bf85c9ac383952483fe3e2557d Mon Sep 17 00:00:00 2001 From: KD Date: Sat, 1 Feb 2025 21:52:35 -0500 Subject: [PATCH] Create rust-macos-latest --- .github/workflows/rust-macos-latest | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/rust-macos-latest diff --git a/.github/workflows/rust-macos-latest b/.github/workflows/rust-macos-latest new file mode 100644 index 0000000..16ea974 --- /dev/null +++ b/.github/workflows/rust-macos-latest @@ -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