Bump black from 20.8b1 to 24.3.0 #32
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: build-and-test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: [3.6, 3.7, 3.8, 3.9] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install shared library dependencies | |
run: sudo apt-get install libxml2-dev libxmlsec1-dev libxmlsec1-openssl | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Upgrade packaging tools | |
run: pip install --upgrade pip setuptools | |
- name: Install Tox and any other packages | |
run: pip install -r requirements-dev.txt | |
- name: Run Tox factors for ${{ matrix.python }} | |
run: TOXFACTOR=clean,py$(sed 's/\.//' <<< "${{ matrix.python }}") tox |