Skip to content

Merge pull request #51 from Zektopic/sentinel/fix-dos-massive-int-con… #85

Merge pull request #51 from Zektopic/sentinel/fix-dos-massive-int-con…

Merge pull request #51 from Zektopic/sentinel/fix-dos-massive-int-con… #85

Workflow file for this run

name: Python application test with unittest
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with unittest
run: |
python -m unittest discover