mirror of
https://github.com/b4tman/sync_ics2gcal
synced 2024-11-10 23:36:52 +00:00
Dmitry Belyaev
111d527c33
* check formatting with black + suggest on pr * test format check * fix test format error suggested by reviewdog[black] Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
50 lines
961 B
YAML
50 lines
961 B
YAML
name: reviewdog
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- develop
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.x
|
|
|
|
- name: Upgrade pip
|
|
run: python -m pip install --upgrade pip
|
|
|
|
- name: Install Poetry
|
|
uses: snok/install-poetry@v1
|
|
|
|
- name: Install deps
|
|
run: poetry install
|
|
|
|
- name: setup mypy
|
|
run: |
|
|
mkdir tmp_bin/
|
|
echo "#!/bin/sh" > tmp_bin/mypy
|
|
echo "poetry run mypy \$@" >> tmp_bin/mypy
|
|
chmod +x tmp_bin/mypy
|
|
echo "$(pwd)/tmp_bin" >> $GITHUB_PATH
|
|
|
|
- uses: tsuyoshicho/action-mypy@v3
|
|
with:
|
|
reporter: github-pr-review
|
|
level: warning
|
|
|
|
- name: format with black
|
|
run: poetry run black .
|
|
|
|
- name: suggester / black
|
|
uses: reviewdog/action-suggester@v1
|
|
with:
|
|
tool_name: black
|