Skip to content

add even smaller logo #339

add even smaller logo

add even smaller logo #339

Workflow file for this run

name: Tests
on:
push:
branches:
- main
paths-ignore:
- '../../archive_docs/**'
- '*.md'
pull_request:
branches:
- main
- '*.x'
paths-ignore:
- '../../archive_docs/**'
- '*.md'
jobs:
tests:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- { name: Linux, python: '3.11', os: ubuntu-latest }
- { name: Windows, python: '3.11', os: windows-latest }
- { name: Mac, python: '3.11', os: macos-latest }
- { name: '3.12', python: '3.12', os: ubuntu-latest }
- { name: '3.11', python: '3.11', os: ubuntu-latest }
- { name: '3.10', python: '3.10', os: ubuntu-latest }
- { name: '3.9', python: '3.9', os: ubuntu-latest }
- { name: 'PyPy', python: 'pypy-3.10', os: ubuntu-latest }
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements/tests.txt
python -m pip install -r requirements/build.txt
- name: Install package
run: |
flit install
- name: Test with pytest
run: |
pytest