From 844d60b284ae98db042c8c79d188dda1f606340b Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Fri, 7 Oct 2022 18:32:18 +0300 Subject: [PATCH] Add CI using Github Actions --- .github/workflows/build.yml | 38 +++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..0a91f8f --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,38 @@ +name: CI +on: [push] + +jobs: + ubuntu-latest: + runs-on: ubuntu-latest + + steps: + - name: Clone + uses: actions/checkout@v1 + + - name: Dependencies + run: | + sudo apt-get update + sudo apt-get install build-essential + sudo apt-get install libsdl2-dev; + + - name: Build + run: | + make + make stream + + macOS-latest: + runs-on: macOS-latest + + steps: + - name: Clone + uses: actions/checkout@v1 + + - name: Dependencies + run: | + brew update + brew install sdl2 + + - name: Build + run: | + make + make stream