Skip to content

switch hatch to dependency groups, split deps to data file #242

switch hatch to dependency groups, split deps to data file

switch hatch to dependency groups, split deps to data file #242

Workflow file for this run

name: CI-CD
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.13"]
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install hatch
- name: Test suite
run: hatch run +py=${{ matrix.python-version }} test:run -- -vv -s