Testing some updates to workflow to see if it can run any tests #132
Workflow file for this run
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: Code style checks | |
on: [pull_request] | |
jobs: | |
black: | |
name: Check black compliance. | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
- name: Black | |
uses: psf/black@stable | |
with: | |
options: "--config pyproject.toml --check" | |
src: "." | |
interrogate: | |
name: Check interrogate compliance. | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
- name: Interrogate | |
uses: JackMcKew/python-interrogate-check@main |