Skip to content

Drop support for python 3.10 #423

Drop support for python 3.10

Drop support for python 3.10 #423

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
tests:
defaults:
run:
shell: bash
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest"]
python-version: ["3.11", "3.12"]
include:
# Check only newish setup for windows
- os: "windows-latest"
python-version: "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 Poetry
uses: snok/install-poetry@v1
- name: Install Dependencies
run: poetry install
- name: Run Tests
run: poetry run pytest
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install Dependencies
run: poetry install
- uses: pre-commit/action@v3.0.1
# Automatically merge if it's a Dependabot PR that passes the build
dependabot:
needs: [tests, lint]
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}