Skip to content

chore: Drop python 3.8 test support #61

chore: Drop python 3.8 test support

chore: Drop python 3.8 test support #61

Workflow file for this run

name: Run CI
on:
push:
branches: [main]
paths-ignore:
- "**.md" # Do not need to run CI for markdown changes.
pull_request:
branches: [main]
paths-ignore:
- "**.md"
jobs:
linux:
strategy:
fail-fast: false
matrix:
include:
- python-version: "3.8"
poetry-version: "1.8.3"
ubuntu-version: "ubuntu-22.04"
- python-version: "3.9"
poetry-version: "latest"
ubuntu-version: "ubuntu-latest"
- python-version: "3.10"
poetry-version: "latest"
ubuntu-version: "ubuntu-latest"
- python-version: "3.11"
poetry-version: "latest"
ubuntu-version: "ubuntu-latest"
- python-version: "3.12"
poetry-version: "latest"
ubuntu-version: "ubuntu-latest"
runs-on: ${{ matrix.ubuntu-version }}
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: abatilo/actions-poetry@7b6d33e44b4f08d7021a1dee3c044e9c253d6439
with:
poetry-version: ${{ matrix.poetry-version }}
- uses: ./.github/actions/build
- uses: ./.github/actions/build-docs
- name: Run tests
run: make test
- name: Verify typehints
run: make lint
- name: install contract test dependencies
run: make install-contract-tests-deps
- name: start SSE contract test service
run: make start-contract-test-service-bg
- name: run SSE contract tests
run: make run-contract-tests
windows:
runs-on: windows-latest
defaults:
run:
shell: powershell
strategy:
fail-fast: false
matrix:
include:
- python-version: "3.8"
poetry-version: "1.8.3"
- python-version: "3.9"
poetry-version: "latest"
- python-version: "3.10"
poetry-version: "latest"
- python-version: "3.11"
poetry-version: "latest"
- python-version: "3.12"
poetry-version: "latest"
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: abatilo/actions-poetry@7b6d33e44b4f08d7021a1dee3c044e9c253d6439
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install requirements
run: poetry install
- uses: ./.github/actions/build
- uses: ./.github/actions/build-docs
- name: Run tests
run: make test