Create SNU_2D_ProgrammingTools_REPOLIST_V72.urll #1132
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: Raku Windows Star Test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rakudostar | |
run: | | |
choco install rakudostar | |
echo "C:\rakudo\bin" >> $GITHUB_PATH | |
echo "C:\rakudo\share\perl6\site\bin" >> $GITHUB_PATH | |
- name: Raku version | |
run: raku -v | |
- name: Install Module dependencies | |
run: zef install --deps-only . | |
- name: Run tests | |
run: zef test --verbose . |