revamp of workflows by Marterich

This commit is contained in:
Chris Titus
2024-08-07 15:24:26 -05:00
parent 5b993adba9
commit 7841f4bbce
8 changed files with 97 additions and 16304 deletions

22
.github/workflows/compile-check.yaml vendored Normal file
View File

@ -0,0 +1,22 @@
name: Compile & Check
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch: # Manual trigger added
workflow_call: # Allow other Actions to call this workflow
jobs:
Compile-and-Check:
runs-on: windows-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v4
- name: Compile and Syntaxcheck winutil.ps1
shell: pwsh
run: |
Set-ExecutionPolicy Bypass -Scope Process -Force; ./Compile.ps1
continue-on-error: false # Directly fail the job on error, removing the need for a separate check