Skip to content

Package Update: Bump pytest from 7.4.2 to 7.4.3 #192

Package Update: Bump pytest from 7.4.2 to 7.4.3

Package Update: Bump pytest from 7.4.2 to 7.4.3 #192

Workflow file for this run

name: CI Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python latest
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -r requirements.txt
- name: Test with pytest
run: make test