Bump org.xerial.snappy:snappy-java from 1.1.10.1 to 1.1.10.4 #73
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: Python Formatter (isort & black) | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install isort and black | |
run: | | |
python -m pip install --upgrade pip | |
pip install isort black | |
- name: Run isort and black | |
run: | | |
isort -c -l 88 -m 3 -tc src/main/python/aut/* | |
black --check -q src/main/python/aut/* |