Add tab to test script #5
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 | |
uses: ./ | |
with: | |
test-script-directory: test-scripts |