Skip to content

Commit c2d7b9c

Browse files
authored
Add ColorSchemeUnit support (#219)
1 parent abbb629 commit c2d7b9c

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Run color scheme tests
2+
description: Run color scheme tests
3+
inputs:
4+
package-name:
5+
description: Package name. Derived from setup step if empty.
6+
default: ''
7+
runs:
8+
using: 'composite'
9+
steps:
10+
- run: |
11+
. $GITHUB_ACTION_PATH/../../scripts/utils.sh
12+
13+
InstallPackage "ColorSchemeUnit" "https://github.com/gerardroche/sublime-color-scheme-unit"
14+
15+
PACKAGE_FROM_INPUTS="${{ inputs.package-name }}"
16+
PACKAGE="${PACKAGE_FROM_INPUTS:-$PACKAGE}"
17+
18+
python3 "$GITHUB_ACTION_PATH/../../scripts/run_tests.py" "$PACKAGE" --color-scheme-test
19+
shell: bash

0 commit comments

Comments
 (0)