Skip to content

[Path] Linting

[Path] Linting #25

Workflow file for this run

name: Path
on:
pull_request:
paths:
# Common
- .manala.yaml
- .github/workflows/_lint.yaml
- .github/workflows/_test.yaml
# Dependencies
- utils/**
# Collection
- .github/workflows/path.yaml
- path/**
workflow_dispatch:
inputs:
debug:
type: boolean
description: Run with tmate debugging
required: false
default: false
jobs:
path_lint:
name: Lint
uses: ./.github/workflows/_lint.yaml
with:
debug: ${{ inputs.debug == true }}
collection: path
path_test:
name: Test
uses: ./.github/workflows/_test.yaml
with:
debug: ${{ inputs.debug == true }}
collection: path