Skip to content

Publish version 8.0 (#355) #28

Publish version 8.0 (#355)

Publish version 8.0 (#355) #28

Workflow file for this run

name: Build and Test
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'Specification/**'
- 'Specification.EntityFrameworkCore/**'
- 'Specification.EntityFramework6/**'
pull_request:
branches:
- main
paths:
- 'Specification/**'
- 'Specification.EntityFrameworkCore/**'
- 'Specification.EntityFramework6/**'
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Install SQL Local DB
run: ./setup-sqllocaldb.ps1
shell: pwsh
- name: Build
run: dotnet build ci.slnf --configuration Release
- name: Test
run: dotnet test ci.slnf --configuration Release --no-build --no-restore