url: fix query param separators in url/literal->string #136
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
name: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
racket-version: ['8.6', '8.7', 'current'] | |
racket-variant: ['BC', 'CS'] | |
name: Build & Test on Racket ${{ matrix.racket-version }} (${{ matrix.racket-variant }}) | |
steps: | |
- uses: actions/checkout@master | |
- uses: Bogdanp/[email protected] | |
with: | |
architecture: x64 | |
variant: ${{ matrix.racket-variant }} | |
version: ${{ matrix.racket-version }} | |
- run: raco pkg install --batch --auto http-easy-lib/ http-easy-test/ http-easy/ | |
- run: raco test http-easy-test/ |