Skip to content

Lock 🔒.

Lock 🔒. #6

Workflow file for this run

name: Run pytest
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: [ "3.11.9" ]
poetry-version: [ "1.1.15" ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install application
run: poetry lock
- name: Install application
run: poetry install
- uses: pavelzw/pytest-action@v2
with:
verbose: true
emoji: true
job-summary: true
custom-arguments: '-vv'
click-to-expand: true
report-title: 'Test Report'