Bump tqdm from 4.66.6 to 4.67.0 #290
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: reviewdog | |
on: [pull_request] | |
jobs: | |
flake8-lint: | |
name: Python ${{ matrix.python-version }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 5 | |
strategy: | |
matrix: | |
python-version: ["3.13"] | |
os: [ubuntu-latest] | |
steps: | |
- name: Action timeline 📊 | |
uses: Kesin11/actions-timeline@v2 | |
- name: Checkout 🔔 | |
uses: actions/checkout@v4 | |
- name: Setup Python ${{ matrix.python-version }} 🔧 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run linter 👀 | |
uses: reviewdog/action-flake8@v3 | |
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 | |
- name: Run Dockerfile linter 👀 | |
uses: hadolint/[email protected] | |
with: | |
dockerfile: Dockerfile | |
ignore: DL3013 | |
- name: Python Install dependencies 🧹 | |
run: | | |
pip3 install -r requirements-dev.txt | |
- name: Run unit tests 🧪 | |
run: pytest | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
files: ./coverage.xml | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- name: Run Lizard 🌀 | |
uses: Uno-Takashi/Lizard-Runner@v3 | |
with: | |
path: "./app ./tests" | |
CCN: "20" | |
arguments: "10" | |
ignore_warnings: "2" |