Skip to content

Update formatting on pyproject.toml to match skimage #244

Update formatting on pyproject.toml to match skimage

Update formatting on pyproject.toml to match skimage #244

Workflow file for this run

name: Test
on:
pull_request:
branches:
- main
push:
branches:
- main
tags:
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
name: ${{ matrix.platform }} py${{ matrix.python }}
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, windows-latest, macos-latest]
python: [3.8, 3.9, "3.10"]
include:
# test big sur on 3.9.0
- python: 3.9
platform: macos-11.0
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
# these libraries enable testing on Qt on linux
- uses: tlambert03/setup-qt-libs@v1
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install 'setuptools<50.0'
python -m pip install .[all,testing]
- name: Test
uses: aganders3/headless-gui@v1
with:
run: pytest --pyargs skan --doctest-modules -s -v
- name: Coverage
if: runner.os == 'Linux' && matrix.python == '3.10'
uses: codecov/codecov-action@v1