diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 11aa958..a20d85c 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -5,19 +5,17 @@ on: branches: - main -permissions: - contents: write - jobs: RunTest: + name: Run pytest runs-on: ubuntu-latest - steps: - - name: Run pytest - uses: pavelzw/pytest-action@v2 - with: - verbose: true - emoji: true - job-summary: true - custom-arguments: '-q' - click-to-expand: true - report-title: 'Test Report' \ No newline at end of file + permissions: + contents: read + uses: pavelzw/pytest-action@v2 + with: + verbose: true + emoji: true + job-summary: true + custom-arguments: '-q' + click-to-expand: true + report-title: 'Test Report' \ No newline at end of file