A hopefully working submission of DietMatch #9
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: Check Style | |
on: push | |
jobs: | |
check-style: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11.3 | |
- name: Install tools | |
run: python -m pip install --upgrade pip pycodestyle | |
- name: Check Style | |
run: pycodestyle --first *.py |