Skip to content

Drop support for Python 3.7 #4

Drop support for Python 3.7

Drop support for Python 3.7 #4

Workflow file for this run

name: CI
on:
push:
branches:
- master
- testing
paths:
- ".github/workflows/*"
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12-dev"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Rye
run: |
curl -sSf https://rye-up.com/get | RYE_INSTALL_OPTION="--yes" bash
- name: Install dependencies
run: |
"${HOME}/.rye/shims/rye" sync
- name: Test with pytest
run: |
"${HOME}/.rye/shims/rye" run python -m pytest