Skip to content

build(deps-dev): bump black from 24.10.0 to 25.1.0 in /requirements #392

build(deps-dev): bump black from 24.10.0 to 25.1.0 in /requirements

build(deps-dev): bump black from 24.10.0 to 25.1.0 in /requirements #392

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Python dependencies
run: |
make install-dev
- name: Run lint checks
run: |
make lint
test:
runs-on: ubuntu-latest
needs: lint
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
make install-dev
pip install tox-gh-actions
- name: Run tests
run: |
make test-ci