From 4a63aae3475949294f8a62654c7dccb3850486f5 Mon Sep 17 00:00:00 2001 From: John Baublitz Date: Sun, 19 Jan 2025 17:45:35 -0500 Subject: [PATCH] CI updates --- .github/workflows/test.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8c20e2c..bb812c0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,6 +8,11 @@ env: RUSTFLAGS: "--deny=warnings" jobs: + branch_protection: + runs-on: ubuntu-latest + steps: + - run: ':' + test: strategy: matrix: @@ -32,6 +37,17 @@ jobs: command: test args: -- --nocapture + cargo-semver: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Install Rust toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + - run: cargo install cargo-semver-checks + - run: cargo semver-checks + clippy: runs-on: ubuntu-latest steps: