mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 06:31:37 +00:00
ci: do no use square brackets for lists
This commit is contained in:
parent
ad2f5a0458
commit
8da302fc8b
3 changed files with 13 additions and 8 deletions
13
.github/workflows/build.yml
vendored
13
.github/workflows/build.yml
vendored
|
@ -1,7 +1,9 @@
|
|||
---
|
||||
name: Build Targets
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
- push
|
||||
- pull_request
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
@ -11,11 +13,10 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
target: [
|
||||
GZDoom,
|
||||
Raze,
|
||||
PrBoom-Plus
|
||||
]
|
||||
target:
|
||||
- GZDoom
|
||||
- Raze
|
||||
- PrBoom-Plus
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
|
4
.github/workflows/lint.yml
vendored
4
.github/workflows/lint.yml
vendored
|
@ -1,7 +1,9 @@
|
|||
---
|
||||
name: Lint Code
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
- push
|
||||
- pull_request
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
|
|
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
@ -1,7 +1,9 @@
|
|||
---
|
||||
name: Test Libraries
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
- push
|
||||
- pull_request
|
||||
|
||||
jobs:
|
||||
test:
|
||||
|
|
Loading…
Reference in a new issue