Skip to content

Merge branch 'main' into python-3-12-and-ruff-format #423

Merge branch 'main' into python-3-12-and-ruff-format

Merge branch 'main' into python-3-12-and-ruff-format #423

Workflow file for this run

name: Unit Tests
on: [ pull_request, push ]
jobs:
unit_tests:
runs-on: ubuntu-latest
steps:
- name: Run Cimon (eBPF).
uses: cycodelabs/cimon-action@v0
with:
client-id: ${{ secrets.CIMON_CLIENT_ID }}
secret: ${{ secrets.CIMON_SECRET }}
prevent: true
allowed-hosts: >
files.pythonhosted.org
install.python-poetry.org
pypi.org
- name: Checkout repository.
uses: actions/checkout@v3
- name: Set up Python.
uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Setup Poetry.
uses: snok/install-poetry@v1
with:
version: 1.5.1
- name: Install dependencies.
run: poetry install
- name: Run Tests.
run: poetry run pytest