Create SNU_2D_ProgrammingTools_REPOLIST_V46.urll #1032
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 Linux Star Docker Test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
# Container comes from https://hub.docker.com/_/rakudo-star | |
# See the Tags for list of available Raku builds | |
container: rakudo-star:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Raku version | |
run: raku -v | |
- name: Install dependencies | |
run: zef install --deps-only . | |
- name: Run tests | |
run: zef test --verbose . |