Skip to content

Update SECURITY.md

Update SECURITY.md #37

Workflow file for this run

name: Unit tests
on:
push:
branches:
- development
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
# Checkout the code from the repository
- uses: actions/checkout@v4
# Set up Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
# Install the required packages
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
# Run the tests
- name: Running unit tests
run: |
python tests/*