Skip to content

chore(deps): update nakamasato/github-actions action to v1.6.2 #1020

chore(deps): update nakamasato/github-actions action to v1.6.2

chore(deps): update nakamasato/github-actions action to v1.6.2 #1020

Workflow file for this run

name: test
on:
pull_request:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
env:
COMMENT_BODY_IDENTIFIER: Pytest Coverage Comment
permissions:
contents: read
pull-requests: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- name: Set up Python & Poetry
uses: nakamasato/github-actions/setup-poetry@1.6.2
with:
install-dependencies: true
- name: test
run: |
set -o pipefail
poetry run pytest | tee pytest-coverage.txt
- name: pytest coverage comment
id: pytest-coverage-comment
uses: MishaKav/pytest-coverage-comment@main
with:
pytest-coverage-path: ./pytest-coverage.txt
junitxml-path: ./pytest.xml