mirror of
https://github.com/getsolus/packages.git
synced 2025-04-25 20:30:37 +03:00
24 lines
583 B
YAML
24 lines
583 B
YAML
---
|
|
name: Script Lint
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'common/**'
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
Python:
|
|
name: Python Linting
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out source repository
|
|
uses: actions/checkout@v4
|
|
- name: Set up Python environment
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.10"
|
|
- name: flake8 Lint
|
|
uses: py-actions/flake8@v2
|
|
with:
|
|
path: "common/CI"
|