Skip to content

Merge pull request #13 from Blue-Yonder-OSS/new-format-readme_master #35

Merge pull request #13 from Blue-Yonder-OSS/new-format-readme_master

Merge pull request #13 from Blue-Yonder-OSS/new-format-readme_master #35

name: UnitTestExecution
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.9', '3.10', '3.11' ]
name: Testing on python version - ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -r test-requirements.txt
- name: Run unit test cases
run: coverage run --source=src.pg_bulk_loader --module pytest --verbose && coverage report --show-missing