Skip to content

Update to arctrl.net 1.0.2 #228

Update to arctrl.net 1.0.2

Update to arctrl.net 1.0.2 #228

name: Build and test
on:
push:
branches: [ developer ]
pull_request:
branches: [ developer ]
jobs:
build-and-test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Build and test
run: dotnet run --project ./build/Build.fsproj runTests
build-and-test-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Build and test
run: dotnet run --project ./build/Build.fsproj runTests