We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abbb629 commit c2d7b9cCopy full SHA for c2d7b9c
actions/run-color-scheme-tests/action.yaml
@@ -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