Skip to content

NPI-3668 add unit test assertions for extra SP3 header field (stated … #168

NPI-3668 add unit test assertions for extra SP3 header field (stated …

NPI-3668 add unit test assertions for extra SP3 header field (stated … #168

name: Python CICD pipelines - Unittesting
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
name: Build and Test on Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
python -m unittest discover -s tests -v