Merge branch 'finanalyst:main' into add-gh-actions #3
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: Run test script | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test_script: | |
# The if directive can be used to skip individual steps | |
if: false | |
runs-on: ubuntu-latest | |
container: | |
image: rakudo-star:latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Run Test Script | |
run: sh ./bin/test-script.sh | |