Skip to content

Merge

Merge #82

Workflow file for this run

name: Check Formatting
on:
pull_request:
push:
branches: [master]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
Formatting:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@v7.0.1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Check file names are correct
run: python check_names.py
- name: Check the README matches the solutions
run: python check_readme.py