diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml new file mode 100644 index 0000000..2df433a --- /dev/null +++ b/.github/workflows/cpp.yml @@ -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 +