Skip to content

Merge pull request #11 from petermorrowdev/feature/k8s-multi-version-… #59

Merge pull request #11 from petermorrowdev/feature/k8s-multi-version-…

Merge pull request #11 from petermorrowdev/feature/k8s-multi-version-… #59

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install Hatch
run: pip install hatch
- name: Test
run: hatch run test
- name: Upload coverage
uses: codecov/codecov-action@v1