Skip to content

[BOB-0] Obligatory SJ tests Filip #88

[BOB-0] Obligatory SJ tests Filip

[BOB-0] Obligatory SJ tests Filip #88

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-restore --configuration Release --verbosity quiet --filter "FullyQualifiedName!~Parsobober.Tests.IndividualTests"