2021-04-06 21:32:01 +01:00
|
|
|
name: Python 3.7 Tests
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2021-12-05 22:05:07 +00:00
|
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
2021-04-06 21:32:01 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
testPy37:
|
2021-12-05 22:05:07 +00:00
|
|
|
if: github.event.pull_request.draft == false
|
2021-04-06 21:32:01 +01:00
|
|
|
name: ut-${{ matrix.config.tox-env }}-${{ matrix.os }}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
2021-10-27 09:55:34 +01:00
|
|
|
fail-fast: true
|
2021-04-06 21:32:01 +01:00
|
|
|
matrix:
|
2021-06-21 12:53:09 +01:00
|
|
|
# os: [ubuntu-latest, macos-latest]
|
2021-06-01 08:23:52 +01:00
|
|
|
os: [ubuntu-latest]
|
2021-04-06 21:32:01 +01:00
|
|
|
config:
|
|
|
|
- { python-version: 3.7, tox-env: py37 }
|
|
|
|
- { python-version: 3.7, tox-env: py37-no-ext }
|
|
|
|
steps:
|
|
|
|
- name: Checkout the Repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
id: checkout-branch
|
|
|
|
|
|
|
|
- name: Run Unit Tests
|
|
|
|
uses: harshanarayana/custom-actions@main
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.config.python-version }}
|
|
|
|
test-infra-tool: tox
|
|
|
|
test-infra-version: latest
|
|
|
|
action: tests
|
|
|
|
test-additional-args: "-e=${{ matrix.config.tox-env }}"
|
|
|
|
test-failure-retry: "3"
|