Skip to content

Add SECURITY.md

Add SECURITY.md #104

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
testing:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
os: [ubuntu-latest]
include:
- os: macos-latest
python-version: 3.8
- os: windows-latest
python-version: 3.8
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: "./.github/actions/test_setup"
with:
python-version: ${{ matrix.python-version }}
- name: Run test
run: python -m pytest tests/test_scripts --disable-warnings -x