Skip to content

chore(deps): update dependency virtualenv to v20.29.1 (#64) #137

chore(deps): update dependency virtualenv to v20.29.1 (#64)

chore(deps): update dependency virtualenv to v20.29.1 (#64) #137

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
push:
branches:
- main
schedule:
- cron: "0 0 * * 1"
workflow_dispatch:
jobs:
tests:
name: Unit and End-to-End Tests
runs-on: ubuntu-latest
strategy:
matrix:
pyversion: [3.11, 3.12, 3.13]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install poetry
run: pipx install --force poetry==1.8.5
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
with:
python-version: ${{ matrix.pyversion }}
cache: 'poetry'
- name: Unit tests
run: make test-unit
- name: Run end-to-end tests
run: make test-e2e