mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 12:01:27 +00:00
ci: remove needless quotes
This commit is contained in:
parent
97f098612d
commit
c8f0ae9cb5
3 changed files with 5 additions and 5 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
@ -5,9 +5,9 @@ on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
if: "${{ !contains(github.event.head_commit.message, '[skip build]') }}"
|
if: "!contains(github.event.head_commit.message, '[skip build]')"
|
||||||
name: ${{ matrix.target }} / ${{ matrix.flavor.name }}
|
name: ${{ matrix.target }} / ${{ matrix.flavor.name }}
|
||||||
runs-on: "macos-12"
|
runs-on: macos-12
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
|
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
|
@ -5,7 +5,7 @@ on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
if: "${{ !contains(github.event.head_commit.message, '[skip lint]') }}"
|
if: "!contains(github.event.head_commit.message, '[skip lint]')"
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
|
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
@ -5,8 +5,8 @@ on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
if: "${{ !contains(github.event.head_commit.message, '[skip test]') }}"
|
if: "!contains(github.event.head_commit.message, '[skip test]')"
|
||||||
runs-on: "macos-12"
|
runs-on: macos-12
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue