From 062eb75876e0f0277b4906e275c569e40be839d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Wei=C3=9F?= <72068105+Sandoun@users.noreply.github.com> Date: Tue, 13 Jun 2023 12:09:29 +0200 Subject: [PATCH] CI use only net6 --- .github/workflows/test-on-hardware.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 }}'