mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-21 19:41:15 +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:
|
||||
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 }}
|
||||
runs-on: "macos-12"
|
||||
runs-on: macos-12
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
|
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
|
@ -5,7 +5,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
|
||||
|
|
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
@ -5,8 +5,8 @@ on: [push, pull_request]
|
|||
|
||||
jobs:
|
||||
test:
|
||||
if: "${{ !contains(github.event.head_commit.message, '[skip test]') }}"
|
||||
runs-on: "macos-12"
|
||||
if: "!contains(github.event.head_commit.message, '[skip test]')"
|
||||
runs-on: macos-12
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
|
|
Loading…
Reference in a new issue