Skip to content
This repository has been archived by the owner on Jan 27, 2025. It is now read-only.

Delete module

Delete module #149

Workflow file for this run

name: Tests
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
tests:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- run: python3 -m pip install -r scripts/requirements.txt
- name: Run tests
run: python3 -m unittest discover