We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fca2fa commit c8e6e2cCopy full SHA for c8e6e2c
1 file changed
.github/workflows/run-tests.yml
@@ -11,6 +11,8 @@ on:
11
jobs:
12
test:
13
runs-on: ubuntu-latest
14
+ container:
15
+ image: ghcr.io/osgeo/gdal:ubuntu-full-3.10.3 # Use the GDAL container image
16
17
steps:
18
- name: Checkout code
@@ -19,18 +21,13 @@ jobs:
19
21
- name: Set up Python
20
22
uses: actions/setup-python@v4
23
with:
- python-version: '3.13.2' # Specify your Python version
24
+ python-version: '3.13.2' # Specify your Python version
25
- - name: Install system dependencies
- run: |
26
- sudo apt-get update
27
- sudo apt-get install -y libgdal-dev
28
-
29
- - name: Install Python dependencies
+ - name: Install dependencies
30
run: |
31
python -m pip install --upgrade pip
32
pip install .
33
34
- name: Run Pytest
35
36
- pytest
+ pytest
0 commit comments