Skip to content

Merge pull request #114 from MothScientist/sqlite_last_release #14

Merge pull request #114 from MothScientist/sqlite_last_release

Merge pull request #114 from MothScientist/sqlite_last_release #14

Workflow file for this run

name: AutoTests
on:
push:
branches: [ master ]
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# The job will be executed for every possible combination of variables.
# https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ '3.12' ]
steps:
# Action for checking out a repo - https://github.com/actions/checkout
- name: Checkout repository
uses: actions/checkout@v4
# https://github.com/actions/setup-python
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Run UnitTests
run: bash run_tests.sh