Skip to content

Bump Microsoft.NET.StringTools from 17.11.48 to 18.0.2 #134

Bump Microsoft.NET.StringTools from 17.11.48 to 18.0.2

Bump Microsoft.NET.StringTools from 17.11.48 to 18.0.2 #134

Workflow file for this run

name: Run tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
permissions:
contents: read
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
filter: tree:0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.x
9.x
10.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --no-restore --verbosity normal --configuration Release
- name: Pack
run: dotnet pack --configuration Release -o /tmp/nupkgs -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg