Skip to content

test: delete

test: delete #1082

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: 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}}