Skip to content

test: Account for everything being +x on Windows #121

test: Account for everything being +x on Windows

test: Account for everything being +x on Windows #121

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev", "pypy-3.8", "pypy-3.9", "pypy-3.10"]
depset: ["min", "full"]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install tox
- name: Test using tox
run: tox -e py-${{ matrix.depset }}
qa:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install tox
run: pip install tox
- name: Test using tox
run: tox -e qa