Skip to content

feat: add candidate field to RTEN model #951

feat: add candidate field to RTEN model

feat: add candidate field to RTEN model #951

Workflow file for this run

name: Test suite workflow πŸ•°πŸ—œβœ…
on:
push:
branches:
- master
pull_request:
branches:
- '**'
jobs:
Running-test:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
python-version: ["3.8", "3.10", "3.11"]
django: ["32"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache dependency
uses: actions/[email protected]
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements/test.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Configure PAT to pull ssh private packages
run: |
git config --global url."https://${{ secrets.ROBONEXT_PAT }}@github.com/".insteadOf ssh://[email protected]/
- name: Run Python Automation Tests
run: |
export TOXENV=${TOX_ENV//./}
make automation-run-tests
env:
TOX_ENV: py${{matrix.python-version}}-django${{matrix.django}}