Skip to content

remove arch parameter from python setup and update tests gh actions #17

remove arch parameter from python setup and update tests gh actions

remove arch parameter from python setup and update tests gh actions #17

Workflow file for this run

name: Run tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
test:
strategy:
matrix:
version: ["3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest, windows-latest, macos-13, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up python ${{ matrix.version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.version }}
- name: Install dependencies
run: pip install tox
- name: Run tests for python ${{ matrix.version }}
run: tox -e py$(tr -d '.' <<< '${{ matrix.version }}')