2024-05-09 09:01:21 +00:00
|
|
|
name: CI
|
2020-02-26 06:15:50 +00:00
|
|
|
|
2024-05-09 09:01:21 +00:00
|
|
|
on: [push, pull_request]
|
2020-02-26 06:15:50 +00:00
|
|
|
|
|
|
|
jobs:
|
2024-05-09 09:01:21 +00:00
|
|
|
test:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macOS-latest, windows-latest]
|
2020-02-26 06:15:50 +00:00
|
|
|
steps:
|
2024-05-09 09:01:21 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
- uses: iffy/install-nim@v3
|
|
|
|
- name: Build
|
|
|
|
run: nimble install -y
|
|
|
|
- name: Test
|
|
|
|
run: nimble test -y
|