We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8af5708 commit 975f602Copy full SHA for 975f602
1 file changed
.github/workflows/linting_and_testing.yml
@@ -21,10 +21,18 @@ jobs:
21
22
23
testing:
24
- name: Testing
25
- runs-on: ubuntu-24.04
+ name: Testing${{ matrix.os }} python ${{ matrix.python-version }}
+ runs-on: ${{ matrix.os }}
26
+ strategy:
27
+ fail-fast: false
28
+ matrix:
29
+ os: ${{ fromJSON(vars.BUILD_OS)}}
30
+ python-version: ${{ fromJSON(vars.PYTHON_VERSIONS)}}
31
steps:
32
- uses: actions/checkout@v4
33
+ - uses: conda-incubator/setup-miniconda@v3
34
+ with:
35
+ python-version: ${{ matrix.python }}
36
- name: Install GDAL
37
run: |
38
sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable
0 commit comments