mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 19:04:31 +00:00
- Introduce lib/shell helpers and keep etc/* scripts thin via compatibility shims - Move Kerberos validation to scripts/validation/check_kerberos.sh and update callers - Add deterministic shellspec unit tests under tests/shellspec/ and wire Maven to run them - Add minimal Spring Boot authority module with startup + /health endpoint and Maven wiring - Document the new layout in docs/layout.md Co-authored-by: Junie <junie@jetbrains.com>
28 lines
610 B
YAML
28 lines
610 B
YAML
name: Windows GitBash
|
|
|
|
on: [push, pull_request]
|
|
|
|
env:
|
|
PATH: 'C:\Program Files\Git\bin;C:\windows\system32;C:\windows'
|
|
FORCE_COLOR: 1
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
jobs:
|
|
windows-gitbash:
|
|
runs-on: windows-latest
|
|
if: "!contains(github.event.head_commit.message, 'ci skip')"
|
|
strategy:
|
|
matrix:
|
|
shells:
|
|
- {shell: sh}
|
|
- {shell: dash}
|
|
- {shell: bash}
|
|
fail-fast: false
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: ${{ matrix.shells.shell }} ./shellspec --task fixture:stat:prepare
|
|
- run: ${{ matrix.shells.shell }} ./shellspec
|