Bump black from 23.3.0 to 23.7.0 #157
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
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
name: Lint | |
jobs: | |
chore: | |
name: Lint and check format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: "3.x" | |
- name: Install virtualenv | |
run: | | |
pip install virtualenv | |
virtualenv --python=python3 .venv | |
- name: Print environment | |
run: | | |
source .venv/bin/activate | |
python --version | |
pip --version | |
- name: make lint | |
run: | | |
source .venv/bin/activate | |
make lint |