Skip to content

Correct references and update receipt format details #5

Correct references and update receipt format details

Correct references and update receipt format details #5

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
jobs:
build-and-test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- run: dotnet restore
- run: dotnet build --no-restore --configuration Release
- run: dotnet test --no-build --configuration Release --verbosity normal
- run: dotnet pack src/M87.Spine/M87.Spine.csproj --no-build --configuration Release --output ./artifacts
- uses: actions/upload-artifact@v4
if: matrix.os == 'ubuntu-latest'
with:
name: nupkg
path: ./artifacts/*.nupkg