Skip to content

Merge pull request #11 from KN-GEST-ongit/issue-10 #2

Merge pull request #11 from KN-GEST-ongit/issue-10

Merge pull request #11 from KN-GEST-ongit/issue-10 #2

Workflow file for this run

name: Test
on:
pull_request:
branches: [ "main", "dev" ]
push:
branches: [ "dev" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install pip==21.1.2
pip install -r requirements.txt
- name: Test with unittest
run: |
python -m unittest discover -s tests