From e1c6377ece5d5e89fc399091befeef0877262263 Mon Sep 17 00:00:00 2001 From: Marco Date: Sat, 9 Dec 2023 11:03:48 +0100 Subject: [PATCH] Fix linter --- .github/workflows/lint.yml | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ea04b2d..7bc821d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -5,7 +5,7 @@ on: jobs: lint: - name: PS Script Analyzer + name: Lint runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -17,24 +17,3 @@ jobs: failOnErrors: true failOnWarnings: false failOnInfos: false - test: - runs-on: windows-latest - steps: - - name: Check out repository code - uses: actions/checkout@v3 - with: - ref: ${{ github.head_ref }} - - name: pester_tests - id: pester_tests - uses: zyborg/pester-tests-report@v1 - with: - include_paths: pester - github_token: ${{ secrets.GITHUB_TOKEN }} - tests_fail_step: true - skip_check_run: true - - name: dump test results - shell: pwsh - run: | - Write-Host 'Total Tests Executed...: ${{ steps.pester_tests.outputs.total_count }}' - Write-Host 'Total Tests PASSED.....: ${{ steps.pester_tests.outputs.passed_count }}' - Write-Host 'Total Tests FAILED.....: ${{ steps.pester_tests.outputs.failed_count }}'