Skip to content

chore(deps): bump minver from 5.0.0 to 6.0.0 (#95) #152

chore(deps): bump minver from 5.0.0 to 6.0.0 (#95)

chore(deps): bump minver from 5.0.0 to 6.0.0 (#95) #152

Workflow file for this run

name: CI for dotnet
on:
push:
branches: ["main"]
paths-ignore:
- "README.md"
- "src/SingleOriginSolution/**"
- ".github/**"
- ".vscode/**"
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4.0.1
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal