Skip to content

Prepare 2.1.1 release. #14

Prepare 2.1.1 release.

Prepare 2.1.1 release. #14

Workflow file for this run

name: SJSON
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-latest]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.9", "pypy3.10"]
max-parallel: 4
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 py.test
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Test package
run: pytest