aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2025-04-21 10:33:46 +0200
committerAriel Costas Guerrero <ariel@costas.dev>2025-04-21 10:33:46 +0200
commitea164bf4eb4f713f15c4aa9077d68dc5157cb99f (patch)
treeb3664ccf527d70ba4016bf2ea8b14e508bcdc37a /.github
parentb0e1d5446fab32682b31c389a27f8886499de2e3 (diff)
Replace base python by UV
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/update-stops-data.yml10
1 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/update-stops-data.yml b/.github/workflows/update-stops-data.yml
index 1b72cdc..1baf323 100644
--- a/.github/workflows/update-stops-data.yml
+++ b/.github/workflows/update-stops-data.yml
@@ -12,13 +12,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3
- - name: Setup Python
- uses: actions/setup-python@v4
- with:
- python-version: '3.x'
-
+ - name: Install uv
+ uses: astral-sh/setup-uv@v5
+
- name: Run download script
- run: python data/download-stops.py
+ run: uv run data/download-stops.py
- name: Commit changes if any
id: commit