Skip to content

Support idle and freq anslysis #111

Support idle and freq anslysis

Support idle and freq anslysis #111

Workflow file for this run

name: Build_And_Test
on:
push:
branches: [ dev, main, 'feat/**' ]
pull_request:
branches: [ dev, main ]
jobs:
linux:
name: build on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-latest, ubuntu-latest ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
7.0.x
6.0.x
- name: Show dotnet Version
run: |
dotnet --list-sdks
dotnet --list-runtimes
- name: Build with dotnet
run: |
dotnet build rdb-tools.sln
- name: Run tests on net7.0
run: |
dotnet test tests/RDBParserTests/RDBParserTests.csproj