ccenhancer: fix checkver regex #43
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test_powershell: | |
name: WindowsPowerShell | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Bucket | |
uses: actions/checkout@main | |
with: | |
fetch-depth: 2 | |
path: my_bucket | |
- name: Checkout Scoop | |
uses: actions/checkout@main | |
with: | |
repository: ScoopInstaller/Scoop | |
path: scoop_core | |
- name: Init Test Suite | |
uses: potatoqualitee/psmodulecache@v5.1 | |
with: | |
modules-to-cache: BuildHelpers | |
shell: powershell | |
- name: Test Bucket | |
shell: powershell | |
run: | | |
$env:SCOOP_HOME="$(Convert-Path '.\scoop_core')" | |
.\my_bucket\bin\test.ps1 | |
test_pwsh: | |
name: PowerShell | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Bucket | |
uses: actions/checkout@main | |
with: | |
fetch-depth: 2 | |
path: my_bucket | |
- name: Checkout Scoop | |
uses: actions/checkout@main | |
with: | |
repository: ScoopInstaller/Scoop | |
path: scoop_core | |
- name: Init Test Suite | |
uses: potatoqualitee/psmodulecache@v5.1 | |
with: | |
modules-to-cache: BuildHelpers | |
shell: pwsh | |
- name: Test Bucket | |
shell: pwsh | |
run: | | |
$env:SCOOP_HOME="$(Convert-Path '.\scoop_core')" | |
.\my_bucket\bin\test.ps1 |