mirror of https://github.com/vacp2p/nim-ngtcp2.git
Add continuous integration with Github actions
This commit is contained in:
parent
6fdeaa707a
commit
83b5b8cfb9
|
@ -0,0 +1,15 @@
|
|||
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
|
||||
- uses: iffy/install-nim@v1.1
|
||||
- name: Build
|
||||
run: nimble install -y
|
Loading…
Reference in New Issue