Skip to content

Merge pull request #93 from guzba/ryan #501

Merge pull request #93 from guzba/ryan

Merge pull request #93 from guzba/ryan #501

Workflow file for this run

name: Github Actions
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
nim-version: ['1.6.8', '1.6.x', '2.0.0']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: jiro4989/setup-nim-action@v1
with:
nim-version: ${{ matrix.nim-version }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: nimble install -y
- run: nimble install -y whisky
- run: nimble install -y jsony
- run: nim c -r tests/test.nim
- run: nim c -r tests/test_http.nim
- run: nim c -r tests/test_http2.nim
- run: nim c -r tests/test_websockets.nim
- run: nim c -r -d:mummyNoWorkers tests/fuzz_recv.nim