chore(deps): update autofix-ci/action digest to 8caa572 - autoclosed #67
Workflow file for this run
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: | |
pull_request: | |
push: | |
workflow_dispatch: | |
jobs: | |
test_powershell: | |
name: WindowsPowerShell | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Bucket | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 2 | |
path: 'my_bucket' | |
- name: Checkout Scoop | |
uses: actions/checkout@v2 | |
with: | |
repository: ScoopInstaller/Scoop | |
path: 'scoop_core' | |
- name: Init and Test | |
shell: powershell | |
run: | | |
$env:SCOOP_HOME="$(Resolve-Path '.\scoop_core')" | |
.\scoop_core\test\bin\init.ps1 | |
.\my_bucket\bin\test.ps1 | |
test_pwsh: | |
name: PowerShell | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Bucket | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 2 | |
path: 'my_bucket' | |
- name: Checkout Scoop | |
uses: actions/checkout@v2 | |
with: | |
repository: ScoopInstaller/Scoop | |
path: 'scoop_core' | |
- name: Init and Test | |
shell: pwsh | |
run: | | |
$env:SCOOP_HOME="$(Resolve-Path '.\scoop_core')" | |
.\scoop_core\test\bin\init.ps1 | |
.\my_bucket\bin\test.ps1 |