Enforce Standards #36
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: Enforce Standards | |
on: | |
workflow_dispatch: | |
# Run every day at 05:00 UTC | |
schedule: | |
- cron: '0 5 * * *' | |
jobs: | |
enforce-standards: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Configure Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install poetry | |
# see https://github.com/marketplace/actions/setup-poetry | |
uses: Gr1N/setup-poetry@v9 | |
with: | |
poetry-version: ${{ env.POETRY_VERSION }} | |
- name: Install dependencies | |
run: poetry install | |
- name: Apply Standards | |
run: poetry run python -m github_standards > output.txt | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
- name: Save Run Output | |
uses: actions/upload-artifact@v4 | |
with: | |
name: apply-standards-log | |
path: output.txt |