Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

dev: support AppRoute policy #823

dev: support AppRoute policy

dev: support AppRoute policy #823

Workflow file for this run

name: Run unittests
on:
pull_request:
permissions: read-all
jobs:
unittests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Python
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Set Up Poetry
uses: abatilo/actions-poetry@7b6d33e44b4f08d7021a1dee3c044e9c253d6439 # v3.0.0
with:
poetry-version: 1.3.1
- name: Install dependencies
run: poetry install --sync -v
- name: Run Tests
run: poetry run pytest catalystwan/tests