Skip to content

Release 2.5.3

Release 2.5.3 #164

Workflow file for this run

#
# trans-tool
# The translation files checker and syncing tool.
#
# Copyright ©2021 Marcin Orlowski <mail [@] MarcinOrlowski.com>
# https://github.com/MarcinOrlowski/trans-tool/
#
name: "Code lint"
on:
push:
branches: [ master ]
pull_request:
branches: [ master, dev ]
jobs:
unittests:
name: "Linting"
runs-on: ubuntu-latest
steps:
# https://github.com/marketplace/actions/checkout
- name: "Checkout sources"
uses: actions/checkout@v4
# https://github.com/marketplace/actions/paths-changes-filter
- name: "Look for changed files..."
uses: dorny/paths-filter@v2
id: filter
with:
filters: |
srcs:
- '**/*.py'
# https://github.com/marketplace/actions/wemake-python-styleguide
# https://wemake-python-stylegui.de/en/latest/pages/usage/integrations/github-actions.html
- name: "Running linter..."
if: steps.filter.outputs.srcs == 'true'
uses: wemake-services/[email protected]