Skip to content
This repository has been archived by the owner on Aug 4, 2023. It is now read-only.

Bump pytest-mock from 3.10.0 to 3.11.1 #1335

Bump pytest-mock from 3.10.0 to 3.11.1

Bump pytest-mock from 3.10.0 to 3.11.1 #1335

Workflow file for this run

name: Lint GitHub Actions workflows
on:
pull_request:
push:
branches:
- main
# Cancels all previous workflow runs for pull requests that have not completed.
concurrency:
# The concurrency group contains the workflow name and the branch name for pull requests
# or the commit hash for any other events.
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
cancel-in-progress: true
jobs:
actionlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check workflow files
run: |
echo "::add-matcher::.github/actionlint-matcher.json"
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/v1.6.15/scripts/download-actionlint.bash)
./actionlint -color
shell: bash