Skip to content

Python version update for gh actions #8

Python version update for gh actions

Python version update for gh actions #8

Workflow file for this run

on:
pull_request:
branches: ['main', 'production']
jobs:
build:
name: Testing with pytest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8.18'
- name: Installing dependencies
run: pip3 install -r requirements.txt
- name: Test
shell: bash --noprofile --norc -eo pipefail {0}
run: pytest