Skip to content

Bump actions/setup-python from 4 to 5 #908

Bump actions/setup-python from 4 to 5

Bump actions/setup-python from 4 to 5 #908

Workflow file for this run

name: Unit Tests
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.8' # Version range or exact version of a Python version to use, using SemVer's version range syntax
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
- name: Install pytest
run: pip install pytest
- name: Install Requirements
run: pip install -r requirements.txt
- name: Run Unit Tests
run: pytest