Issue #344 fix tests #143
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: e2e tests | |
on: | |
push: | |
branches: | |
- master | |
- '**Tests**' | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
jobs: | |
test-setup-python: | |
name: Test setup-python | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run with setup-python 3.7 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Setup pylint | |
run: python -m pip install pylint | |
- name: Setup flake8 | |
run: python -m pip install flake8 | |
- name: Run tests | |
run: make test | |
- name: Run e2e Tests | |
run: make e2e_test | |
- name: Run with setup-python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
- name: Setup pylint | |
run: python -m pip install pylint | |
- name: Setup flake8 | |
run: python -m pip install flake8 | |
- name: Run tests | |
run: make test | |
- name: Run e2e Tests | |
run: make e2e_test | |
- name: Run with setup-python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Setup pylint | |
run: python -m pip install pylint | |
- name: Setup flake8 | |
run: python -m pip install flake8 | |
- name: Run tests | |
run: make test | |
- name: Run e2e Tests | |
run: make e2e_test | |
- name: Run with setup-python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Setup pylint | |
run: python -m pip install pylint | |
- name: Setup flake8 | |
run: python -m pip install flake8 | |
- name: Run tests | |
run: make test | |
- name: Run e2e Tests | |
run: make e2e_test | |
- name: Run with setup-python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Setup pylint | |
run: python -m pip install pylint | |
- name: Setup flake8 | |
run: python -m pip install flake8 | |
- name: Run tests | |
run: make test | |
- name: Run e2e Tests | |
run: make e2e_test |