Update black requirement from ~22 to ~24 in the pip group #117
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: Test | |
on: | |
pull_request: | |
branches: | |
- develop | |
- master | |
types: ['opened', 'edited', 'reopened', 'synchronize'] | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@50fbc622fc4ef5163becd7fab6573eac35f8462e | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.6.x' | |
- name: Install Poetry | |
uses: snok/[email protected] | |
with: | |
virtualenvs-create: true | |
- name: Build and Test | |
run: | | |
poetry install | |
poetry run pytest | |
poetry build |