First cut at separating out users using Maeser vs. users modifying Maeser #12
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: Versioning Check | |
on: | |
pull_request: | |
jobs: | |
version_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Poetry | |
run: | | |
python -m pip install --upgrade pip | |
pip install poetry | |
- name: Build Poetry | |
run: poetry build | |
- name: Environment | |
run: cd .github && make env | |
- name: Check version increase | |
run: cd .github && make check_version_increase |