aboutsummaryrefslogtreecommitdiff
path: root/libs/game_gamebryo/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to 'libs/game_gamebryo/.github/workflows')
-rw-r--r--libs/game_gamebryo/.github/workflows/build.yml17
-rw-r--r--libs/game_gamebryo/.github/workflows/linting.yml16
2 files changed, 33 insertions, 0 deletions
diff --git a/libs/game_gamebryo/.github/workflows/build.yml b/libs/game_gamebryo/.github/workflows/build.yml
new file mode 100644
index 0000000..7efc43f
--- /dev/null
+++ b/libs/game_gamebryo/.github/workflows/build.yml
@@ -0,0 +1,17 @@
+name: Build GameBryo Library
+
+on:
+ push:
+ branches: master
+ pull_request:
+ types: [opened, synchronize, reopened]
+
+jobs:
+ build:
+ runs-on: windows-2022
+ steps:
+ - name: Build GameBryo Library
+ uses: ModOrganizer2/build-with-mob-action@master
+ with:
+ mo2-third-parties: lz4 zlib
+ mo2-dependencies: cmake_common uibase
diff --git a/libs/game_gamebryo/.github/workflows/linting.yml b/libs/game_gamebryo/.github/workflows/linting.yml
new file mode 100644
index 0000000..1b8fe2a
--- /dev/null
+++ b/libs/game_gamebryo/.github/workflows/linting.yml
@@ -0,0 +1,16 @@
+name: Lint GameBryo Library
+
+on:
+ push:
+ pull_request:
+ types: [opened, synchronize, reopened]
+
+jobs:
+ lint:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - name: Check format
+ uses: ModOrganizer2/check-formatting-action@master
+ with:
+ check-path: "."