Skip to content

chore: Updating catalog client to Dataset v1.1.0 (#4) #6

chore: Updating catalog client to Dataset v1.1.0 (#4)

chore: Updating catalog client to Dataset v1.1.0 (#4) #6

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
defaults:
run:
working-directory: dataset-catalog-client
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Run ruff check
run: uv run --group dev ruff check .
- name: Run ruff format check
run: uv run --group dev ruff format --check .
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Run pytest
run: uv run --group dev pytest