1.7.0 Added single value test #16
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
# GitHub Action that uses Black to reformat the Python code in an incoming pull request. | |
# If all Python code in the pull request is compliant with Black then this Action does nothing. | |
# Othewrwise, Black is run and its changes are committed back to the incoming pull request. | |
# https://github.com/cclauss/autoblack | |
name: blacken | |
on: [pull_request] | |
jobs: | |
build: | |
name: Check Format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install Black & isort | |
run: pip install --upgrade black isort pymmh3 | |
- name: Run black | |
run: black --check . |