Skip to content

docs: Updated information regarding self-hosted runner configuration #38

docs: Updated information regarding self-hosted runner configuration

docs: Updated information regarding self-hosted runner configuration #38

Workflow file for this run

on:
push:
jobs:
CI:
name: Build project
runs-on: [self-hosted, Windows, x64, TwinCAT]
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Build
shell: pwsh
run: |
.\build.ps1 -Configuration Release
- name: Run tests
shell: pwsh
run: |
dotnet test --configuration Release --no-build --logger "console;verbosity=detailed" .\TwinGet.sln