Skip to content

Bump the github-actions group with 2 updates #19

Bump the github-actions group with 2 updates

Bump the github-actions group with 2 updates #19

Workflow file for this run

name: CI
env:
BUILD_CONFIGURATION: Release
on: [push, pull_request]
jobs:
Linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get dependencies
shell: bash
run: sudo apt-get update && sudo apt-get install gcc make g++ libtool cmake
- name: Build
run: "bash ci.sh"
Windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set MSBuild env
uses: microsoft/setup-msbuild@v1.3
- name: Build for engine
run: "bash ci.sh"
MacOS:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Build
run: "bash ci.sh"