Fix skript repo dir #89
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test action | |
on: | |
- push | |
- pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Build Dockerfile | |
run: docker build . --file Dockerfile | |
- name: Create custom test script | |
run: | | |
mkdir test-scripts | |
printf 'test "github actions":\n\tassert true is true with "it worked!"' > test-scripts/actions.sk | |
- name: Run skript-test-action with vanilla tests | |
uses: ./ | |
with: | |
test_script_directory: test-scripts | |
- name: Run skript-test-action without vanilla tests | |
uses: ./ | |
with: | |
test_script_directory: test-scripts | |
run_vanilla_tests: false | |
- name: Run skript-test-action on tag with vanilla tests | |
uses: ./ | |
with: | |
test_script_directory: test-scripts | |
skript_repo_ref: 2.8.2 | |
- name: Run skript-test-action on tag without vanilla tests | |
uses: ./ | |
with: | |
test_script_directory: test-scripts | |
run_vanilla_tests: false | |
skript_repo_ref: 2.8.2 | |
- name: Download skript-reflect | |
run: | | |
mkdir extra-plugins | |
wget -O extra-plugins/skript-reflect.jar https://github.com/SkriptLang/skript-reflect/releases/download/v2.4/skript-reflect.jar | |
- name: Prepare skript-reflect test script | |
run: | | |
printf 'test "github actions extra plugins":\n\tassert plugin "skript-reflect" is enabled with "skript-reflect not enabled"' > test-scripts/reflect.sk | |
- name: Run skript-test-action with skript-reflect as an extra plugin | |
uses: ./ | |
with: | |
test_script_directory: test-scripts | |
run_vanilla_tests: false | |
skript_repo_ref: 2.8.2 | |
extra_plugins_directory: extra-plugins |