Skip to content

EM-DAT initial implementation #41

EM-DAT initial implementation

EM-DAT initial implementation #41

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
merge_group:
concurrency:
# Cancel running job if another commit is pushed to the branch
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: test
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
os:
- ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Sync
run: uv sync --all-extras
- name: Test
run: uv run pytest tests