Upgrade mc-bedrock-server to version 1.21.71.01 #18
This file contains hidden or 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: test | |
on: [push, pull_request] | |
jobs: | |
test-powershell: | |
name: Test WindowsPowerShell | |
runs-on: windows-latest | |
steps: | |
- name: Setup Scoop | |
uses: MinoruSekine/setup-scoop@v4 | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Install xn bucket | |
shell: powershell | |
run: scoop bucket add xn https://github.com/Pengxn/xn | |
- name: Check Version and Test | |
shell: powershell | |
run: | | |
.\bin\Check-Version.ps1 | |
.\test\Install-Test.ps1 | |
test-pwsh: | |
name: Test PowerShell Core | |
runs-on: windows-latest | |
steps: | |
- name: Setup Scoop | |
uses: MinoruSekine/setup-scoop@v4 | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Install xn bucket | |
shell: powershell | |
run: scoop bucket add xn https://github.com/Pengxn/xn | |
- name: Check Version and Test | |
shell: pwsh | |
run: | | |
.\bin\Check-Version.ps1 | |
.\test\Install-Test.ps1 |