Skip to content

[pre-commit.ci] pre-commit autoupdate #280

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #280

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test application
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
python -m pip install --pre tox-gh-actions
- name: Test with pytest
run: |
# remove '.' in python-version and prepend with 'py' to get the correct tox env
tox -e py$(echo ${{ matrix.python-version }} | sed 's/\.//g')
test-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.7"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
python -m pip install --pre tox-gh-actions
- name: Test with pytest
run: tox
env:
PLATFORM: windows-latest