fixup! 702530051d05c79aefd9134c2bba2dab58e49f4a #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'] | |
cc: ['clang', 'gcc'] | |
steps: | |
- uses: 'actions/checkout@v3' | |
- name: 'install clang' | |
if: | | |
${{ matrix.cc == 'clang' }} | |
run: | | |
sudo apt-get install -y clang | |
echo >> "$GITHUB_ENV" 'CC=clang' | |
echo >> "$GITHUB_ENV" 'LDSHARED=clang -shared' | |
- name: 'install gcc' | |
if: | | |
${{ matrix.cc == 'gcc' }} | |
run: | | |
sudo apt-get install -y gcc | |
echo >> "$GITHUB_ENV" 'CC=gcc' | |
- 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 |