Skip to content

[All] Update license year #4

[All] Update license year

[All] Update license year #4

Workflow file for this run

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