Skip to content

Bump actions/checkout from 5 to 6 #28

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #28

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.8', '3.9', '3.10', '3.11']
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
- name: Run tests
run: python setup.py test