Skip to content

0.4.5

0.4.5 #637

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.x', 'stable']
include:
- nim-version: '2.0.x'
atomic_arc: true
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: jiro4989/setup-nim-action@v2
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 -d:useMalloc tests/test.nim
- run: nim c -r -d:useMalloc tests/test_http.nim
- run: nim c --mm:atomicArc -r -d:useMalloc tests/test_http.nim
if: ${{ matrix.atomic_arc }}
- run: nim c -r -d:useMalloc tests/test_http2.nim
- run: nim c -r -d:useMalloc tests/test_websockets.nim
- run: nim c -r -d:useMalloc -d:mummyNoWorkers tests/fuzz_recv.nim