Register DEFAULT group on agent start and [Caracal] Update github workflow & Fix unit tests #205
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: run-tox | |
on: | |
push: | |
branches: | |
- stable/2024.1-m3 | |
pull_request: | |
jobs: | |
build: | |
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<4.0" | |
- name: Run Tox | |
run: "tox -e py" |