Skip to content

Update Python and dependencies #104

Update Python and dependencies

Update Python and dependencies #104

Workflow file for this run

name: CI
on:
push:
branches:
- main
- feature/*
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# https://www.python.org/downloads/
python-version: ["pypy-3.8", "pypy-3.9", "pypy-3.10", "pypy-3.11"]
name: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v3
with:
python-version: "${{ matrix.python-version }}"
architecture: "x64"
- name: CI checks
run: |
python3 -m pip install wheel poetry
make