Skip to content

Bump black from 22.6.0 to 24.3.0 #57

Bump black from 22.6.0 to 24.3.0

Bump black from 22.6.0 to 24.3.0 #57

Workflow file for this run

name: Run Tests
on: [push, pull_request, workflow_dispatch]
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install module & dependencies
run: |
cd ${{ github.workspace }}
python3 setup.py install
- name: Run the test
run: |
cd ${{ github.workspace }}
./test.sh "${{ matrix.python-version }}"