Merge pull request #114 from MothScientist/sqlite_last_release #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |