Skip to content

Create only-run-tests.yaml #2

Create only-run-tests.yaml

Create only-run-tests.yaml #2

name: only-run-tests-workflow
on:
push:
branches:
- dev
jobs:
run-tests:
runs-on: [ubuntu]
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
env:
HPCC_USERNAME: ${{ secrets.HPCC_USERNAME }}
HPCC_PASSWORD: ${{ secrets.HPCC_PASSWORD }}
DUMMY_USERNAME: ${{ secrets.DUMMY_USERNAME }}
DUMMY_PASSWORD: ${{ secrets.DUMMY_PASSWORD }}
HPCC_HOST: ${{ secrets.HPCC_HOST }}
HPCC_PORT: ${{ secrets.HPCC_PORT }}
DUMMY_HOST: ${{ secrets.DUMMY_HOST }}
DUMMY_PORT: ${{ secrets.DUMMY_PORT }}
run: |
python -m pytest tests