diff --git a/.github/workflows/semver-check.yaml b/.github/workflows/semver-check.yaml deleted file mode 100644 index f4404a50..00000000 --- a/.github/workflows/semver-check.yaml +++ /dev/null @@ -1,31 +0,0 @@ -name: Semver check - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -on: - push: - branches: - - main - paths: - - "**.rs" - - "**.toml" - -jobs: - semver: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: Install rust - run: | - rustup set auto-self-update disable - rustup toolchain install stable --profile default - rustup show - - name: Rust cache - uses: Swatinem/rust-cache@v2 - - name: Check semver - uses: obi1kenobi/cargo-semver-checks-action@v2