-
-
Notifications
You must be signed in to change notification settings - Fork 2
31 lines (30 loc) · 665 Bytes
/
test.yml
File metadata and controls
31 lines (30 loc) · 665 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
on:
pull_request:
push:
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
version:
- binary:stable
- devel
- 1.4.0
- 1.2.8
- 1.0.10
- binary:1.6.0
os:
- ubuntu-latest
- macOS-13
- windows-latest
steps:
- uses: actions/checkout@v1
- uses: iffy/install-nim@v5
with:
version: ${{ matrix.version }}
- name: Test
continue-on-error: ${{ matrix.version == 'devel' }}
run: |
nimble install -y
nim c -d:release src/fastcgi/client.nim
nim c -d:release src/fastcgi/server.nim