Skip to content

Drop linux s390x

Drop linux s390x #56

Workflow file for this run

name: Python
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{matrix.python-version}}
uses: actions/setup-python@v1
with:
python-version: ${{matrix.python-version}}
- name: Install Python Dependencies
run: pip install cffi pytest
- name: Compile C Library
run: python setup_ffi.py
- name: Test
run: pytest