Update README.txt #1001
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 Docker Test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
# Container comes from https://hub.docker.com/r/jjmerelo/alpine-raku | |
# See the Tags for list of available Raku builds | |
container: jjmerelo/alpine-raku: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 . |