mirror of
https://github.com/vacp2p/nim-ngtcp2.git
synced 2026-01-09 14:57:59 -05:00
Add continuous integration with Github actions
This commit is contained in:
15
.github/workflows/build.yml
vendored
Normal file
15
.github/workflows/build.yml
vendored
Normal file
@@ -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
|
||||
Reference in New Issue
Block a user