Skip to content

never use all-defined-out #343

never use all-defined-out

never use all-defined-out #343

Workflow file for this run

name: Coverage
on:
push:
branches:
- "*"
paths:
- "**coverage.yml"
- "**.rkt"
- "**.scrbl"
pull_request:
branches:
- "*"
paths:
- "**.rkt"
- "**.scrbl"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Racket
uses: Bogdanp/[email protected]
with:
architecture: x64
distribution: full
variant: "CS"
version: "stable"
packages: "cover, cover-badge"
- run: raco pkg install --no-docs --auto --skip-installed
- run: raco pkg install --auto --skip-installed
- run: |
xvfb-run -a raco cover -n tool -b .
raco cover-badge
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: coverage
publish_branch: gh-pages
destination_dir: coverage