Skip to content

Smarter cleaning rules for packages with SemVer #280

Smarter cleaning rules for packages with SemVer

Smarter cleaning rules for packages with SemVer #280

Workflow file for this run

name: Build
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
paths-ignore:
- '.github/**'
- 'docs/**'
- '*.md'
pull_request:
branches: [ main ]
paths-ignore:
- '.github/**'
- 'docs/**'
- '*.md'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4.1.1
- name: Setup .NET
uses: actions/setup-dotnet@v4.0.0
with:
global-json-file: global.json
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal