Skip to content

Remove 'wheel' build dependency #39

Remove 'wheel' build dependency

Remove 'wheel' build dependency #39

name: test
on:
pull_request:
branches:
- main
push:
branches:
- main
- ver/*
tags:
- v*
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: pip install .
- name: Test package
run: python -c 'import swf_typed'
# TODO: add unit-testing (and linting?)