Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 8 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,16 @@ jobs:
name: Check coding standards
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
lfs: true
- name: Set up uv
uses: astral-sh/setup-uv@v2
uses: astral-sh/setup-uv@v8.3.2
with:
python-version: "3.13"
enable-cache: true
cache-python: true
cache-dependency-glob: "uv.lock"
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Sync
run: uv sync --all-packages --frozen
- name: Ruff
Expand All @@ -40,18 +38,16 @@ jobs:
python-version: ["3.10", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
lfs: true
- name: Set up uv
uses: astral-sh/setup-uv@v2
uses: astral-sh/setup-uv@v8.3.2
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
cache-python: true
cache-dependency-glob: "uv.lock"
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Sync
run: uv sync --all-packages --frozen
- name: Run tests
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/publish_tilebox_datasets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,17 @@ jobs:
contents: read # required for checkout
id-token: write # required trusted publishing to pypi.org
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
lfs: true
- name: Set up uv
uses: astral-sh/setup-uv@v2
uses: astral-sh/setup-uv@v8.3.2
with:
python-version: "3.13"
enable-cache: true
cache-python: true
cache-dependency-glob: "uv.lock"
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Print version
run: git describe --tags
- name: Build
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/publish_tilebox_grpc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,17 @@ jobs:
contents: read # required for checkout
id-token: write # required trusted publishing to pypi.org
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
lfs: true
- name: Set up uv
uses: astral-sh/setup-uv@v2
uses: astral-sh/setup-uv@v8.3.2
with:
python-version: "3.13"
enable-cache: true
cache-python: true
cache-dependency-glob: "uv.lock"
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Print version
run: git describe --tags
- name: Build
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/publish_tilebox_storage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,17 @@ jobs:
contents: read # required for checkout
id-token: write # required trusted publishing to pypi.org
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
lfs: true
- name: Set up uv
uses: astral-sh/setup-uv@v2
uses: astral-sh/setup-uv@v8.3.2
with:
python-version: "3.13"
enable-cache: true
cache-python: true
cache-dependency-glob: "uv.lock"
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Print version
run: git describe --tags
- name: Build
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/publish_tilebox_workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,17 @@ jobs:
contents: read # required for checkout
id-token: write # required trusted publishing to pypi.org
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
lfs: true
- name: Set up uv
uses: astral-sh/setup-uv@v2
uses: astral-sh/setup-uv@v8.3.2
with:
python-version: "3.13"
enable-cache: true
cache-python: true
cache-dependency-glob: "uv.lock"
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Print version
run: git describe --tags
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repos:
hooks:
- id: sync-with-uv
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.15.21
rev: v0.15.22
hooks:
- id: ruff-check
args: [--fix, --exit-non-zero-on-fix]
Expand Down
Loading
Loading