Skip to content

Added 3 new predefined variables: VERSION_MAJOR, VERSION_MINOR, VERSI… #89

Added 3 new predefined variables: VERSION_MAJOR, VERSION_MINOR, VERSI…

Added 3 new predefined variables: VERSION_MAJOR, VERSION_MINOR, VERSI… #89

Workflow file for this run

name: Python Testing
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: python -m unittest discover -s test -t test -p '*_test.py'