Skip to content

Fix: Drop Python 3.8 support properly #406

Fix: Drop Python 3.8 support properly

Fix: Drop Python 3.8 support properly #406

Workflow file for this run

# Build actions for every push
name: onpush
on:
push:
branches:
- master
- stable
pull_request:
jobs:
check:
strategy:
matrix:
python-ver: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-22.04, macos-latest]
runs-on: ${{matrix.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-ver }}
- name: Install Hatch
run: pip install --upgrade hatch
- name: Lint
run: hatch run lint:check
- name: Test
env:
RPC_URL: ${{ secrets.RPC_URL }}
run: hatch run +py=${{ matrix.python-ver }} test:all