Metapackage Outdated #103
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: Metapackage Outdated | |
on: | |
schedule: | |
- cron: '0 2 * * *' | |
defaults: | |
run: | |
working-directory: './meta' | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
steps: | |
- name: Checkout repository and submodules | |
uses: actions/checkout@v3 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
cache: 'poetry' | |
- name: Install project | |
run: poetry install | |
- name: Check tag version | |
run: poetry run invoke outdated |