Skip to content

feat: Added compatibility tests for Python 3.11, 3.12 #1

feat: Added compatibility tests for Python 3.11, 3.12

feat: Added compatibility tests for Python 3.11, 3.12 #1

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-20.04
strategy:
max-parallel: 3
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
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 dependencies
run: |
python -m pip install --upgrade pip setuptools
- name: Lint with flake8
run: |
pip install flake8
flake8 .
- name: Test with pytest
run: |
python setup.py test
- name: Test import
run: |
python -m setup install
cd /
python -c "import busypie"