Skip to content

Update man page

Update man page #16

Workflow file for this run

name: Test CI
on: [push, pull_request]
jobs:
test:
name: Run tests
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Crystal
uses: crystal-lang/install-crystal@v1
- name: Build and run tests
run: |
# GitHub Actions fails with “No such device or address” for /dev/tty.
sed -i '' /STDIN.reopen/d src/main.cr
make build test