ShiftyX1 c7f98a176f
Some checks failed
Build / Build (push) Has been skipped
Release / gitea-draft-release (push) Successful in 2s
Release / prepare (push) Has been skipped
Release / build_linux (push) Has been skipped
Release / build_macos (push) Has been skipped
Release / build_windows (push) Has been skipped
Release / publish_release (push) Has been skipped
MSVC Build / build-windows (windows-latest) (push) Has been cancelled
fix: add GitHub server check to workflows and streamline CMake installation
2025-12-09 00:58:41 +03:00

17 lines
310 B
YAML

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
# Only run on GitHub, skip on Gitea
if: github.server_url == 'https://github.com'
name: Build
uses: ./.github/workflows/cmake.yml
with:
build_type: Release
run_tests: true