mirror of
https://github.com/cmderdev/cmder.git
synced 2024-11-10 17:59:11 +08:00
43 lines
877 B
YAML
43 lines
877 B
YAML
name: Run Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
defaults:
|
|
run:
|
|
shell: cmd
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
|
|
tests:
|
|
runs-on: windows-latest
|
|
continue-on-error: false
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Initialize vendors
|
|
shell: pwsh
|
|
working-directory: scripts
|
|
run: .\build.ps1 -verbose
|
|
- name: Testing Clink Shell
|
|
run: |
|
|
cmd /c vendor\init.bat /v /d /t
|
|
- name: Testing PowerShell
|
|
run: |
|
|
PowerShell.exe -ExecutionPolicy Bypass -NoLogo -NoProfile -Command "Invoke-Expression '. ''vendor\profile.ps1'''"
|
|
- name: Testing Bash
|
|
run: |
|
|
bash vendor/cmder.sh
|