Skip to content

fix up GHA

fix up GHA #7

Workflow file for this run

name: 'python tests'
on:
- 'push'
- 'pull_request'
jobs:
build:
runs-on: 'ubuntu-latest'
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
compiler:
- cc: 'clang'
ldshared: 'clang -shared'
- cc: 'gcc'
steps:
- uses: 'actions/checkout@v3'
- name: 'install compiler'
run: |
sudo apt-get install -y ${{ matrix.compiler.cc }}
echo >> "$GITHUB_ENV" 'CC=${{ matrix.compiler.cc }}'
echo >> "$GITHUB_ENV" 'LDSHARED=${{ matrix.compiler.ldshared }}'
- name: 'set up python ${{ matrix.python-version }}'
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: 'install tox'
run: |
python -mpip install -U pip setuptools
python -mpip install -U tox tox-gh-actions
- name: 'run tests'
run: |
tox