version-control-clean-check 0.1.4

Checks if the version control is clean. Based on code from Cargo.
Documentation
name: Check Semver

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true

on:
  push: 
    branches:
      - main
  pull_request: 
    branches:
      - main
env:
  CARGO_TERM_COLOR: always

  
jobs:
  semver-checks:
    runs-on: ubuntu-latest
    steps:
      - name: checkout
        uses: wykies/checkout@main
      - name: Check semver
        uses: obi1kenobi/cargo-semver-checks-action@main