-
Notifications
You must be signed in to change notification settings - Fork 2
44 lines (41 loc) · 1.13 KB
/
ci.yml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Nim CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: jiro4989/setup-nim-action@v2
with:
nim-version: 'stable'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: |
sudo apt install libasound2-dev libx11-dev libxrandr-dev libxi-dev libgl1-mesa-dev libglu1-mesa-dev libxcursor-dev libxinerama-dev libwayland-dev libxkbcommon-dev libwayland-bin
- name: Run tests
run: nimble test -Y
# test-windows:
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v4
# - uses: jiro4989/setup-nim-action@v2
# with:
# nim-version: 'stable'
# repo-token: ${{ secrets.GITHUB_TOKEN }}
# - name: Run tests
# run: nimble test -Y
#
# test-macos:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v4
# - uses: jiro4989/setup-nim-action@v2
# with:
# nim-version: 'stable'
# repo-token: ${{ secrets.GITHUB_TOKEN }}
# - name: Run tests
# run: nimble test -Y