Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

chore(deps): bump pytest from 8.2.1 to 8.2.2 #537

chore(deps): bump pytest from 8.2.1 to 8.2.2

chore(deps): bump pytest from 8.2.1 to 8.2.2 #537

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- name: actions/checkout@v3
uses: actions/checkout@v3
- name: actions/setup-python@v4
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: actions/cache@v3
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-python-${{ matrix.python-version }}-dependencies-${{ hashFiles('requirements.txt') }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip setuptools six wheel
python -m pip install -r requirements.txt
- name: Testing
run: |
pytest --cov=. $(find . -name "*.py" ! -path "./venv/*")