Skip to content

Updated python version in pipeline #2

Updated python version in pipeline

Updated python version in pipeline #2

Workflow file for this run

name: Python Unit Tests
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.9'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: bash test.sh