diff --git a/.github/workflows/ci-master-pr.yml b/.github/workflows/ci-master-pr.yml index c60f43f..4292cd5 100644 --- a/.github/workflows/ci-master-pr.yml +++ b/.github/workflows/ci-master-pr.yml @@ -104,6 +104,32 @@ jobs: run: | pwsh -NoLogo -NonInteractive -NoProfile -Command './test/test.ps1' + test-powershell-7-3: + runs-on: ubuntu-latest + container: + image: mcr.microsoft.com/powershell:7.3-ubuntu-20.04 + steps: + - uses: actions/checkout@v3 + - name: Powershell version + run: | + pwsh -NoLogo -NonInteractive -NoProfile -Command '$PSVersionTable' + - name: Test + run: | + pwsh -NoLogo -NonInteractive -NoProfile -Command './test/test.ps1' + + test-powershell-7-4: + runs-on: ubuntu-latest + container: + image: mcr.microsoft.com/powershell:7.4-ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + - name: Powershell version + run: | + pwsh -NoLogo -NonInteractive -NoProfile -Command '$PSVersionTable' + - name: Test + run: | + pwsh -NoLogo -NonInteractive -NoProfile -Command './test/test.ps1' + update-draft-release: needs: - test-powershell-5-1-windows-2019 @@ -113,6 +139,8 @@ jobs: - test-powershell-7-0 - test-powershell-7-1 - test-powershell-7-2 + - test-powershell-7-3 + - test-powershell-7-4 - test-publish-to-psgallery if: github.ref == 'refs/heads/master' runs-on: ubuntu-latest @@ -157,6 +185,8 @@ jobs: - test-powershell-7-0 - test-powershell-7-1 - test-powershell-7-2 + - test-powershell-7-3 + - test-powershell-7-4 - test-publish-to-psgallery if: startsWith(github.ref, 'refs/tags/') runs-on: ubuntu-latest