Interpolate multiple expressions in a string #5
Workflow file for this run
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
on: [push, pull_request] | |
name: CI | |
jobs: | |
build: | |
name: "Build on Racket '${{ matrix.racket-version }}' (${{ matrix.racket-variant }})" | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.experimental || false }} | |
strategy: | |
fail-fast: false | |
matrix: | |
racket-version: ["stable", "current"] | |
racket-variant: ["BC", "CS"] | |
include: | |
- racket-version: current | |
experimental: true | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Bogdanp/[email protected] | |
with: | |
architecture: x64 | |
distribution: full | |
variant: ${{ matrix.racket-variant }} | |
version: ${{ matrix.racket-version }} | |
- name: Installing string-interpolation and its dependencies | |
run: raco pkg install --auto --name string-interpolation | |
- name: Compiling string-interpolation and building its docs | |
run: raco setup --check-pkg-deps --unused-pkg-deps string-interpolation | |
- name: Testing string-interpolation | |
run: raco test -x -p string-interpolation |