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

Bump pytest from 7.0.1 to 8.2.2 #117

Bump pytest from 7.0.1 to 8.2.2

Bump pytest from 7.0.1 to 8.2.2 #117

Workflow file for this run

---
name: Test Suite
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.9"]
fail-fast: false
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v2"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install Poetry"
run: "python -m pip install poetry"
- name: "Install dependencies"
run: "python -m poetry install"
# Turning off linting checks till the black<>click issue is resolved
# - name: "Run linting checks"
# run: "python -m poetry run pre-commit run -a"
- name: "Run tests"
run: "python -m poetry run pytest --cov=leetcomp"