mirror of
https://hub.psychoinformatics.de/actions/xlsx-to-tsv.git
synced 2026-09-10 03:46:04 +00:00
15 lines
412 B
YAML
15 lines
412 B
YAML
name: Unit tests (Linux)
|
|
on: [push, pull_request]
|
|
jobs:
|
|
check:
|
|
runs-on: debian-latest
|
|
steps:
|
|
- name: Checkout project
|
|
uses: actions/checkout@v4
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v6
|
|
- name: Install hatch
|
|
run: uv tool install hatch
|
|
- name: Run test with coverage reporting
|
|
run: |
|
|
hatch test --all --parallel --randomize --cover
|