fix: update pearson rti api client package #1179
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: 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.9", "3.10", "3.11"] | |
django: ["40"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Cache dependency | |
uses: actions/cache@v4 | |
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/setup-python@v4.5.0 | |
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://git@github.com/ | |
- name: Run Python Automation Tests | |
run: | | |
export TOXENV=${TOX_ENV//./} | |
make automation-run-tests | |
env: | |
TOX_ENV: py${{matrix.python-version}}-django${{matrix.django}} |