Skip to content

[Caracal] Migrate Tox & Fix unit tests #671

[Caracal] Migrate Tox & Fix unit tests

[Caracal] Migrate Tox & Fix unit tests #671

Workflow file for this run

name: run-tox
on:
push:
branches:
- main
- stable/2024.1-m3
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.10']
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install Tox
run: pip install tox
- name: Run Tox Tests
run: "tox -e py"
pep8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: 3.10
- name: Install Tox
run: pip install tox
- name: Run Tox pep8
run: "tox -e pep8"