Skip to content

chore: update tests per new function names #159

chore: update tests per new function names

chore: update tests per new function names #159

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-py37"
- "windows-py38"
- "windows-py39"
include:
- name: "windows-py37"
python: "3.7"
os: windows-latest
tox_env: "py37"
- name: "windows-py38"
python: "3.8"
os: windows-latest
tox_env: "py38"
- name: "windows-py39"
python: "3.8"
os: windows-latest
tox_env: "py38"
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 }}"