Update MC versions (2025-10-07) #45
This file contains hidden or 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: Run tests | |
on: | |
push: | |
branches: | |
- 'master' | |
paths-ignore: | |
- 'renovate.json' | |
pull_request: | |
branches: | |
- 'master' | |
paths-ignore: | |
- 'renovate.json' | |
merge_group: | |
# read-only token | |
permissions: {} | |
jobs: | |
update_mc_versions: | |
name: "Run tests" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 | |
- name: Install poetry | |
run: pipx install poetry | |
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6 | |
with: | |
python-version-file: '.python-version' # Read python version from .python-version | |
cache: 'poetry' | |
- run: poetry install | |
- run: poetry run python update_versions.py |