Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 35 additions & 35 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
name: Tests

on:
pull_request:
push:
workflow_dispatch:

jobs:
test_shell:
name: Test shell ${{ matrix.shell }}
runs-on: windows-latest
strategy:
matrix:
shell:
- powershell
- pwsh
defaults:
run:
shell: ${{ matrix.shell }}
steps:
- name: Checkout Bucket
uses: actions/checkout@v4.2.2
with:
fetch-depth: 2
path: 'self_bucket'
- name: Checkout Scoop
uses: actions/checkout@v4.2.2
with:
repository: ScoopInstaller/Scoop
path: 'scoop_core'
- name: Init and Test on ${{ matrix.shell }}
run: |
$env:SCOOP_HOME="$(Convert-Path '.\scoop_core')"
.\scoop_core\test\bin\init.ps1
.\self_bucket\bin\test.ps1
name: Tests
on:
pull_request:
push:
workflow_dispatch:
jobs:
test_shell:
name: Test shell ${{ matrix.shell }}
runs-on: windows-latest
strategy:
matrix:
shell:
- powershell
- pwsh
defaults:
run:
shell: ${{ matrix.shell }}
steps:
- name: Checkout Bucket
uses: actions/checkout@v5.0.0
with:
fetch-depth: 2
path: 'self_bucket'
- name: Checkout Scoop
uses: actions/checkout@v5.0.0
with:
repository: ScoopInstaller/Scoop
path: 'scoop_core'
- name: Init and Test on ${{ matrix.shell }}
run: |
$env:SCOOP_HOME="$(Convert-Path '.\scoop_core')"
.\scoop_core\test\bin\init.ps1
.\self_bucket\bin\test.ps1
40 changes: 20 additions & 20 deletions .github/workflows/excavator.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: Excavator

on:
workflow_dispatch:
schedule:
- cron: '0 6 * * *'

jobs:
excavate:
name: Excavate
runs-on: windows-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4.2.2
- name: Excavate
uses: ScoopInstaller/GithubActions@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SKIP_UPDATED: '1'
name: Excavator
on:
workflow_dispatch:
schedule:
- cron: '0 6 * * *'
jobs:
excavate:
name: Excavate
runs-on: windows-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v5.0.0
- name: Excavate
uses: ScoopInstaller/GithubActions@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SKIP_UPDATED: '1'
Loading