Skip to content
This repository has been archived by the owner on Jun 23, 2024. It is now read-only.

Try pypy 3.7 for CI

Try pypy 3.7 for CI #3

Workflow file for this run

name: Linters and tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: "3.9"
- name: Install libs
run: pip install -r requirements-dev.txt
- name: Lint files
run: make lint
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.7"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Run python tests
run: make tests