mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-09-04 02:05:48 -05:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
23 lines
586 B
YAML
23 lines
586 B
YAML
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@v5
|
|
|
|
- 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
|