-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes: #243
- Loading branch information
Showing
5 changed files
with
527 additions
and
499 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 |
---|---|---|
|
@@ -7,9 +7,9 @@ on: | |
- release-v*.*.* | ||
|
||
env: | ||
POETRY_VERSION: '1.1.13' | ||
POETRY_VERSION: "1.1.13" | ||
POETRY_CACHE_DIR: .poetry_cache | ||
PYTHON_VERSION: '3.x' | ||
PYTHON_VERSION: "3.x" | ||
|
||
jobs: | ||
dev: | ||
|
@@ -38,19 +38,12 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install poetry | ||
run: pipx install poetry | ||
|
||
- uses: actions/[email protected] | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
|
||
- name: Install poetry | ||
run: pip install --user poetry==${{ env.POETRY_VERSION }} | ||
|
||
- uses: actions/cache@v3 | ||
id: cache-poetry | ||
with: | ||
path: ${{ env.POETRY_CACHE_DIR }} | ||
key: ${{ runner.os }}-${{ hashFiles('**/poetry.lock') }} | ||
|
||
- name: Install dependencies | ||
run: poetry install | ||
|
@@ -70,4 +63,5 @@ jobs: | |
with: | ||
collection: tests/integration/openfoodfacts-events.postman_collection.json | ||
environment: tests/integration/off-local.postman_environment.json | ||
delayRequest: 5000 | ||
- run: make clean |
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.