cmder/.github/workflows/tests.yml
2022-10-16 00:33:31 +03:30

39 lines
762 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: Testing Clink Shell
run: |
cmd /c vendor\init.bat
- name: Testing PowerShell
run: |
PowerShell.exe -ExecutionPolicy Bypass -NoLogo -NoProfile -Command "Invoke-Expression '. ''vendor\profile.ps1'''"
- name: Testing Bash
run: |
bash vendor/cmder.sh