diff --git a/.github/workflows/test-on-hardware.yml b/.github/workflows/test-on-hardware.yml index 4633e52..9d31c5b 100644 --- a/.github/workflows/test-on-hardware.yml +++ b/.github/workflows/test-on-hardware.yml @@ -10,6 +10,7 @@ on: jobs: check-plcs-online: + name: 'Test PLC online status' runs-on: [self-hosted, linux, x64, womed-local-linux] steps: - name: 'Ping FPX-H-C30T' @@ -20,11 +21,12 @@ jobs: run: ping 192.168.115.213 -w 5 run-unit-tests: + name: 'Run unit tests' needs: check-plcs-online runs-on: [self-hosted, linux, x64, womed-local-linux] strategy: matrix: - dotnet-version: [ '5.0.x', '6.0.x' ] + dotnet-version: [ '6.0.x' ] steps: - uses: actions/checkout@v3 - name: 'Setup dotnet ${{ matrix.dotnet-version }}'