CI use only net6

This commit is contained in:
Felix Weiß
2023-06-13 12:09:29 +02:00
parent c771e747eb
commit 062eb75876

View File

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