Skip to content

Commit

Permalink
feat(CI) : change github actions to enable CI on feat/import-monitorings
Browse files Browse the repository at this point in the history
  • Loading branch information
jacquesfize committed Dec 9, 2024
1 parent e9f2614 commit 08ec80d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ on:
- master
- hotfixes
- develop
- feat/import
- feat/import-monitorings
pull_request:
branches:
- master
- hotfixes
- develop
- feat/import
- feat/import-monitorings

jobs:
mount_app_and_run_cypress:
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
cp ./config/settings.ini.sample ./config/settings.ini
./install/05_install_frontend.sh --ci
env:
GEONATURE_CONFIG_FILE: '${{ github.workspace }}/config/test_config.toml'
GEONATURE_CONFIG_FILE: "${{ github.workspace }}/config/test_config.toml"
- name: Install core modules
run: |
geonature install-gn-module contrib/occtax OCCTAX --build=false
Expand Down
22 changes: 12 additions & 10 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,30 @@ on:
- master
- hotfixes
- develop
- feat/import-monitorings
pull_request:
branches:
- master
- hotfixes
- develop
- feat/import-monitorings

jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
debian-version: ['11', '12']
debian-version: ["11", "12"]
include:
- debian-version: '11'
python-version: '3.9'
postgres-version: '13'
postgis-version: '3.2'
- debian-version: '12'
python-version: '3.11'
postgres-version: '15'
postgis-version: '3.3'
- debian-version: "11"
python-version: "3.9"
postgres-version: "13"
postgis-version: "3.2"
- debian-version: "12"
python-version: "3.11"
postgres-version: "15"
postgis-version: "3.3"

name: Debian ${{ matrix.debian-version }}

Expand Down Expand Up @@ -68,7 +70,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache: "pip"
- name: Install GDAL
run: |
sudo apt update
Expand Down

0 comments on commit 08ec80d

Please sign in to comment.