Bump mealie-recipes/mealie to v1.11.0 #35274
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Software Layer CI | |
on: # yamllint disable-line rule:truthy | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- ".github/workflows/software-layer*" | |
- ".requirements/**" | |
- "software-layer/**" | |
jobs: | |
lint: | |
runs-on: [self-hosted, linux] | |
steps: | |
- name: Checkout the repo at current context | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup Task | |
uses: arduino/setup-task@v2 | |
with: | |
version: '3.19.0' | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Run linters | |
run: task software-layer:lint |