Add images and reformat 8.15 release announcement (#334) #306
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: build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
coverage: | |
name: Check whether we can build every site | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Racket | |
uses: Bogdanp/[email protected] | |
with: | |
architecture: 'x64' # or: 'x64', 'x86', 'arm32', 'arm64' | |
distribution: 'full' # or: 'minimal' | |
variant: 'CS' # or: 'BC' for Racket Before Chez | |
version: '8.10' | |
- name: Install package | |
run: raco pkg install --auto --no-docs -n racket-lang-org `pwd` | |
- name: Build everything (headless display via xvfb) | |
run: xvfb-run racket -l- racket-lang-org/sync --save-temps --render-locally Web |