Skip to content

Merge branch 'master' of github.com:floriankraemer/cognitive-code-ana… #1

Merge branch 'master' of github.com:floriankraemer/cognitive-code-ana…

Merge branch 'master' of github.com:floriankraemer/cognitive-code-ana… #1

Workflow file for this run

name: Tests
on:
push:
branches:
- master
- main
- develop
pull_request:
branches:
- master
- main
- develop
jobs:
test:
name: Run test suite
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
- name: Run tests
run: dotnet test "CognitiveCodeAnalysis.sln" --configuration Release --verbosity normal