Skip to content

Commit f084f9d

Browse files
committed
chore: remove test.yml
1 parent 2505d17 commit f084f9d

2 files changed

Lines changed: 8 additions & 67 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
linux:
1212
description: "Linux"
1313
type: boolean
14-
default: true
14+
default: false
1515
macos:
1616
description: "macOS"
1717
type: boolean
@@ -48,13 +48,12 @@ jobs:
4848
sudo udevadm trigger --subsystem-match=input || true
4949
test -e /dev/uinput
5050
sudo chmod 666 /dev/uinput
51-
# Forward OS selections if triggered manually, otherwise use defaults for push/pr triggers
52-
linux: ${{ (github.event_name == 'workflow_dispatch' && inputs.linux == true) || (github.event_name != 'workflow_dispatch' && true) }}
53-
macos: ${{ (github.event_name == 'workflow_dispatch' && inputs.macos == true) || (github.event_name != 'workflow_dispatch' && false) }}
54-
windows: ${{ (github.event_name == 'workflow_dispatch' && inputs.windows == true) || (github.event_name != 'workflow_dispatch' && false) }}
51+
linux: ${{ github.event_name != 'workflow_dispatch' || inputs.linux }}
52+
macos: ${{ github.event_name == 'workflow_dispatch' && inputs.macos }}
53+
windows: ${{ github.event_name == 'workflow_dispatch' && inputs.windows }}
5554

5655
# Forward manual force-run triggers, otherwise default to false on push/pr (allowing auto-triggering)
57-
stylua: ${{ (github.event_name == 'workflow_dispatch' && inputs.stylua == true) || false }}
58-
luacheck: ${{ (github.event_name == 'workflow_dispatch' && inputs.luacheck == true) || false }}
59-
prettier: ${{ (github.event_name == 'workflow_dispatch' && inputs.prettier == true) || false }}
60-
tests: ${{ (github.event_name == 'workflow_dispatch' && inputs.tests == true) || false }}
56+
stylua: ${{ github.event_name == 'workflow_dispatch' && inputs.stylua }}
57+
luacheck: ${{ github.event_name == 'workflow_dispatch' && inputs.luacheck }}
58+
prettier: ${{ github.event_name == 'workflow_dispatch' && inputs.prettier }}
59+
tests: ${{ github.event_name == 'workflow_dispatch' && inputs.tests }}

.github/workflows/test.yml

Lines changed: 0 additions & 58 deletions
This file was deleted.

0 commit comments

Comments
 (0)