Skip to content

black formatting disagrees with ruff here #101

black formatting disagrees with ruff here

black formatting disagrees with ruff here #101

Workflow file for this run

name: Tests
on:
push:
branches:
- "*"
pull_request:
branches:
- master
jobs:
test:
name: ${{ matrix.platform }} (${{ matrix.python-version }})
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
platform: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Run tests
run: pytest -v --color yes --cov gunpowder --cov-report xml
- uses: codecov/codecov-action@v3