Skip to content

Bump System.Text.Json from 9.0.7 to 9.0.8 #293

Bump System.Text.Json from 9.0.7 to 9.0.8

Bump System.Text.Json from 9.0.7 to 9.0.8 #293

Workflow file for this run

name: "Continuous Integration"
on:
push:
branches:
- "**" # matches every branch
- "!main" # excludes main
concurrency:
group: nuget-${{ github.ref }}
cancel-in-progress: true
env:
PROJECT_PATH: "src/Dapper.DDD.Repository/Dapper.DDD.Repository.csproj"
SOLUTION_PATH: "Dapper.DDD.Repository.sln"
PACKAGE_OUTPUT_DIRECTORY: ${{ github.workspace }}\output
NUGET_SOURCE_URL: "https://api.nuget.org/v3/index.json"
jobs:
test:
name: "test"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Install dotnet"
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: "Restore packages"
run: dotnet restore ${{ env.SOLUTION_PATH }}
- name: Test
run: dotnet test ${{ env.SOLUTION_PATH }}