Skip to content

build(deps): bump packaging from 21.3 to 24.1 #448

build(deps): bump packaging from 21.3 to 24.1

build(deps): bump packaging from 21.3 to 24.1 #448

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- release-v*.*.*
env:
POETRY_VERSION: "1.1.13"
POETRY_CACHE_DIR: .poetry_cache
PYTHON_VERSION: "3.x"
jobs:
dev:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run developer workflow
run: make dev && make livecheck
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Run lint tests
run: make lint
unit:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/[email protected]
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: poetry install
- name: Unit tests
run: make unit
integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: make dev
- name: Run Postman collection
uses: matt-ball/newman-action@master
with:
collection: tests/integration/openfoodfacts-events.postman_collection.json
environment: tests/integration/off-local.postman_environment.json
delayRequest: 5000
- run: make clean