mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 03:51:33 +00:00
ci: lint .yaml files
This commit is contained in:
parent
d3b41a69af
commit
fc25dfb66e
3 changed files with 4 additions and 4 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -4,7 +4,7 @@ on: [push, pull_request]
|
|||
|
||||
jobs:
|
||||
build:
|
||||
if: "!contains(github.event.head_commit.message, '[skip build]')"
|
||||
if: "${{ !contains(github.event.head_commit.message, '[skip build]') }}"
|
||||
name: ${{ matrix.config.name }}
|
||||
runs-on: "macos-10.15"
|
||||
strategy:
|
||||
|
|
4
.github/workflows/lint.yml
vendored
4
.github/workflows/lint.yml
vendored
|
@ -4,7 +4,7 @@ on: [push, pull_request]
|
|||
|
||||
jobs:
|
||||
lint:
|
||||
if: "!contains(github.event.head_commit.message, '[skip lint]')"
|
||||
if: "${{ !contains(github.event.head_commit.message, '[skip lint]') }}"
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
@ -13,7 +13,7 @@ jobs:
|
|||
- name: Super-Linter
|
||||
uses: docker://ghcr.io/github/super-linter:slim-v4
|
||||
env:
|
||||
FILTER_REGEX_INCLUDE: .*(\.py|\.md)$
|
||||
FILTER_REGEX_INCLUDE: .*(\.py|\.md|\.yml)$
|
||||
VALIDATE_PYTHON_BLACK: false
|
||||
|
||||
- name: Bandit
|
||||
|
|
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
@ -4,7 +4,7 @@ on: [push, pull_request]
|
|||
|
||||
jobs:
|
||||
test:
|
||||
if: "!contains(github.event.head_commit.message, '[skip test]')"
|
||||
if: "${{ !contains(github.event.head_commit.message, '[skip test]') }}"
|
||||
runs-on: "macos-10.15"
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
|
|
Loading…
Reference in a new issue