Skip to content

chore(deps): update voluptuous requirement from ~=0.13.1 to ~=0.15.2 #42

chore(deps): update voluptuous requirement from ~=0.13.1 to ~=0.15.2

chore(deps): update voluptuous requirement from ~=0.13.1 to ~=0.15.2 #42

Workflow file for this run

name: reviewdog
on: [ pull_request, workflow_dispatch ]
jobs:
mypy:
name: runner / mypy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: "actions/setup-python@v5"
with:
python-version: "3.12"
- name: Install requirements
run: python3 -m pip install -r requirements.txt
- uses: tsuyoshicho/action-mypy@v4
with:
github_token: ${{ secrets.github_token }}
# Change reviewdog reporter if you need [github-pr-check,github-check,github-pr-review].
reporter: github-pr-review
# Change reporter level if you need.
# GitHub Status Check won't become failure with warning.
level: warning
# Change the current directory to run mypy command.
# mypy command reads setup.cfg or other settings file in this path.
workdir: .
setup_method: "adaptive"