Skip to content

chore: remove all | from types to allow python 3.8/9 compatibility #178

chore: remove all | from types to allow python 3.8/9 compatibility

chore: remove all | from types to allow python 3.8/9 compatibility #178

Workflow file for this run

name: windows-tests
on:
push:
branches:
- main
tags:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
name:
- "windows-py38"
- "windows-py39"
- "windows-py310"
- "windows-py312"
include:
- name: "windows-py38"
python: "3.8"
os: windows-latest
tox_env: "py38"
- name: "windows-py39"
python: "3.9"
os: windows-latest
tox_env: "py39"
- name: "windows-py310"
python: "3.10"
os: windows-latest
tox_env: "py310"
- name: "windows-py312"
python: "3.12"
os: windows-latest
tox_env: "py312"
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox virtualenv
- name: Test build
run: "tox -e ${{ matrix.tox_env }}"