Bump black from 22.3.0 to 24.3.0 #285
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: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
Pipeline: | |
runs-on: ubuntu-22.04 | |
container: python:3.7-buster | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install lint dependencies | |
run: make requirements-lint | |
- name: Style check | |
run: PYTHONPATH=./pip/deps make style-check | |
- name: Static Type check | |
run: PYTHONPATH=./pip/deps make type-check | |
- name: Install test dependencies | |
run: make requirements-test | |
- name: Install prod dependencies | |
run: make requirements-minimum | |
- name: Tests | |
run: PYTHONPATH=./pip/deps make tests |