mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-11 16:27:19 +10:00
26 lines
579 B
YAML
26 lines
579 B
YAML
name: CI - Validation (External)
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
workflow_dispatch:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build:
|
|
name: Validate
|
|
runs-on: macos-latest
|
|
if: github.repository_owner != 'dortania'
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.10'
|
|
- name: Install Dependencies
|
|
run: python3 -m pip install -r requirements.txt
|
|
- name: Validate
|
|
run: python3 OpenCore-Patcher-GUI.command --validate
|