Skip to content

feat: add StorageHealthCheck #33

feat: add StorageHealthCheck

feat: add StorageHealthCheck #33

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Run linters
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Setup Hatch
run: pipx install hatch
- name: Run static analysis
run: hatch fmt --check
- name: Run linters
run: hatch env run -e style check
- name: Type checks
run: hatch env run -e types check
tests:
name: Run tests on ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["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: Setup Hatch
run: pipx install hatch
- name: Run tests
run: |
hatch env run -e tests -i py=${{ matrix.python-version }} cov