Skip to content

Renaming filter profile to policy. All projects using .net 7. #4

Renaming filter profile to policy. All projects using .net 7.

Renaming filter profile to policy. All projects using .net 7. #4

Workflow file for this run

name: Build and test
on: [push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test -c Release --no-build --verbosity normal