Skip to content

Change matrix versions for Github action #105

Change matrix versions for Github action

Change matrix versions for Github action #105

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: ["3.8", "3.9", "3.10", "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