nim-ngtcp2/.github/workflows/test.yml

20 lines
370 B
YAML
Raw Normal View History

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v2
2020-09-08 07:24:57 +00:00
with:
submodules: true
- uses: iffy/install-nim@v1.1
- name: Build
run: nimble install -y
2020-09-08 07:20:24 +00:00
- name: Test
run: nimble test -y