Add GitHub Actions Linux/macOS builder CI

This commit is contained in:
Alex Hultman
2019-12-28 22:35:36 +01:00
parent 92fcd32e0a
commit c971653120
+26
View File
@@ -0,0 +1,26 @@
name: C++ CI
on: [push]
jobs:
build_linux:
runs-on: ubuntu-latest
steps:
- name: Clone source
run: git clone --recursive https://github.com/uNetworking/uWebSockets.git
- name: Build source
run: make -C uWebSockets
build_osx:
runs-on: macos-latest
steps:
- name: Clone source
run: git clone --recursive https://github.com/uNetworking/uWebSockets.git
- name: Build source
run: make -C uWebSockets