Files
KVF/.gitea/workflows/macos.yml
Kbz-8 3a9592bbd3
Some checks failed
MacOS / build (macos-x86_64) (push) Failing after 38s
Linux / build (x86_64, ubuntu-latest) (push) Failing after 52s
fixing CI
2026-01-11 12:34:34 +01:00

32 lines
574 B
YAML

name: MacOS
on:
repository_dispatch:
types: [create-pull-request]
pull_request:
push:
paths-ignore:
- '.gitignore'
- 'LICENSE'
- 'README.md'
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [macos-x86_64]
runs-on: ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, 'ci skip')"
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Install system dependencies
run: brew install SDL2 vulkan-headers
- name: Build
run: cd sandbox && make