chore(deps): bump System.Text.Json in /src/PactNet.Abstractions #545
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
env: | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
NUGET_FEED: https://api.nuget.org/v3/index.json | |
jobs: | |
build-dotnet: | |
name: "Build and Test (dotnet)" | |
strategy: | |
matrix: | |
os: | |
- windows-latest | |
- ubuntu-latest | |
- macos-12 | |
- macos-14 | |
include: | |
- arch: x64 | |
- arch: ARM64 | |
os: macos-14 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core SDK | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: "8.0.x" # runners already have .Net Framework installed as well | |
- name: Cache FFI dependencies | |
id: cache | |
uses: actions/cache@v4 | |
with: | |
key: cache-ffi-${{ hashFiles('build/download-native-libs.sh') }} | |
enableCrossOsArchive: true | |
path: | | |
build/linux | |
build/macos | |
build/windows | |
- name: Pull interop dependencies | |
run: bash -c "build/download-native-libs.sh" | |
if: ${{ steps.cache.outputs.cache-hit != 'true' }} | |
- name: Restore | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore | |
- name: Test | |
run: dotnet test --no-build --verbosity normal -- RunConfiguration.TargetPlatform=${{matrix.arch}} | |
- name: Pack | |
if: matrix.os == 'windows-latest' | |
run: dotnet pack --verbosity normal -c Release --no-restore --include-source --version-suffix alpha.${{ github.run_number }} -o ./dist | |
- name: Upload Artifact | |
if: matrix.os == 'windows-latest' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: nupkgs | |
path: ./dist/*.* | |
release: | |
needs: build-dotnet | |
if: github.ref_type == 'tag' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: "8.0.x" # runners already have .Net Framework installed as well | |
- name: Pull interop dependencies | |
run: bash -c "build/download-native-libs.sh" | |
- name: Pack | |
run: | | |
VERSION="${{ github.ref_name }}" | |
echo "Version: $VERSION" | |
dotnet pack -c Release --include-source -p:Version=$VERSION -o ./dist src/PactNet/PactNet.csproj | |
dotnet pack -c Release --include-source -p:Version=$VERSION -o ./dist src/PactNet.Abstractions/PactNet.Abstractions.csproj | |
dotnet pack -c Release --include-source -o ./dist src/PactNet.Output.Xunit/PactNet.Output.Xunit.csproj | |
- name: Push | |
run: dotnet nuget push ./dist/*.nupkg --source $NUGET_FEED --skip-duplicate --api-key ${{ secrets.NUGET_API_KEY }} | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: dist/*.* |