Added some new actions

This commit is contained in:
2022-02-25 12:16:25 -08:00
parent 0fd3bf459c
commit 7d101dab55
2 changed files with 30 additions and 3 deletions

29
.github/workflows/build-poker.yml vendored Normal file
View File

@ -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

View File

@ -1,9 +1,7 @@
name: test
on:
pull_request:
branches: [ master ]
push:
branches: [ master ]
branches: [ master, main ]
jobs:
build:
runs-on: ubuntu-latest