diff --git a/.github/workflows/build-poker.yml b/.github/workflows/build-poker.yml new file mode 100644 index 00000000..9015c29a --- /dev/null +++ b/.github/workflows/build-poker.yml @@ -0,0 +1,29 @@ +name: test +on: + push: + branches: [ master, main ] +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout 🛎️ + uses: actions/checkout@v2.3.1 + + - name: Setup cmake + uses: jwlawson/actions-setup-cmake@v1.9 + with: + cmake-version: '3.13.x' + + - name: Get Libraries + run: | + git submodule update --init --recursive + sudo apt install xorg-dev libglu1-mesa-dev + + - name: Build + run: | + cmake -B build -DTARGET_TYPE=game -DTARGET_GAME=poker + cmake --build ./build + + - name: Test + run: | + ./build/test/tests \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test-pr.yml similarity index 91% rename from .github/workflows/test.yml rename to .github/workflows/test-pr.yml index ed9e7113..eeacfadb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test-pr.yml @@ -1,9 +1,7 @@ name: test on: pull_request: - branches: [ master ] - push: - branches: [ master ] + branches: [ master, main ] jobs: build: runs-on: ubuntu-latest