chore(release): v2.2.0-beta #179
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate kdf version | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
validate_version_change: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3 | |
- name: Install dependencies | |
run: pip install toml | |
- name: Run version check | |
run: ./scripts/ci/validate-version-bump.py |