Skip to content

Add first unittests covering OnlyKey Object #25

Add first unittests covering OnlyKey Object

Add first unittests covering OnlyKey Object #25

name: Build and test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
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: make script executable
run: chmod u+x build.sh
- name: Build and test
run: ./build.sh 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: ./build.cmd runTests