-
-
Notifications
You must be signed in to change notification settings - Fork 270
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* add enhanced support for limits (RFC5) (#1856) * update GitHub actions * update GitHub actions * update GitHub actions * update GitHub actions
- Loading branch information
1 parent
86e5b78
commit f93246e
Showing
25 changed files
with
304 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
contents: read | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@master | ||
|
||
- name: Set up QEMU | ||
uses: docker/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,8 +37,8 @@ jobs: | |
- name: Chown user | ||
run: | | ||
sudo chown -R $USER:$USER $GITHUB_WORKSPACE | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
- uses: actions/checkout@master | ||
- uses: actions/setup-python@v5 | ||
name: Setup Python ${{ matrix.python-version }} | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
@@ -69,21 +69,21 @@ jobs: | |
security-disabled: true | ||
port: 9209 | ||
- name: Install and run MongoDB | ||
uses: supercharge/mongodb-github-action@1.5.0 | ||
uses: supercharge/mongodb-github-action@1.12.0 | ||
with: | ||
mongodb-version: 4.4 | ||
- name: Install and run SensorThingsAPI | ||
uses: cgs-earth/[email protected] | ||
- name: Install sqlite and gpkg dependencies | ||
uses: awalsh128/cache-apt-pkgs-action@latest | ||
uses: awalsh128/cache-apt-pkgs-action@v1.4.3 | ||
with: | ||
packages: libsqlite3-mod-spatialite | ||
version: 4.3.0a-6build1 | ||
- name: Use ubuntuGIS unstable ppa | ||
run: sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable && sudo apt update | ||
shell: bash | ||
- name: Install GDAL with Python bindings | ||
uses: awalsh128/cache-apt-pkgs-action@latest | ||
uses: awalsh128/cache-apt-pkgs-action@v1.4.3 | ||
with: | ||
packages: gdal-bin libgdal-dev | ||
version: 3.8.4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# | ||
# Authors: Tom Kralidis <[email protected]> | ||
# | ||
# Copyright (c) 2020 Tom Kralidis | ||
# Copyright (c) 2025 Tom Kralidis | ||
# | ||
# Permission is hereby granted, free of charge, to any person | ||
# obtaining a copy of this software and associated documentation | ||
|
@@ -41,7 +41,9 @@ server: | |
- fr-CA | ||
# cors: true | ||
pretty_print: true | ||
limit: 10 | ||
limits: | ||
default_items: 20 | ||
max_items: 50 | ||
# templates: | ||
# path: /path/to/Jinja2/templates | ||
# static: /path/to/static/folder # css/js/img | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.