Skip to content

Bump System.Text.Json from 7.0.0 to 8.0.4 in /tests/Blazored.SessionStorage.Tests #18

Bump System.Text.Json from 7.0.0 to 8.0.4 in /tests/Blazored.SessionStorage.Tests

Bump System.Text.Json from 7.0.0 to 8.0.4 in /tests/Blazored.SessionStorage.Tests #18

Workflow file for this run

name: Build & Test PR
on:
pull_request:
branches: [ main ]
env:
NETCORE_VERSION: '7.0.x'
PROJECT_NAME: Blazored.SessionStorage
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setting up .NET Core SDK ${{ env.NETCORE_VERSION }}...
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.NETCORE_VERSION }}
- name: Restoring packages...
run: dotnet restore
- name: Building Session Storage...
run: dotnet build --configuration Release --no-restore src/$PROJECT_NAME/$PROJECT_NAME.csproj
- name: Build Session Storage Test Extensions
run: dotnet build -c Release --no-restore src/$PROJECT_NAME.TestExtensions/$PROJECT_NAME.TestExtensions.csproj
- name: Testing...
run: dotnet test -c Release --no-restore --verbosity normal tests/$PROJECT_NAME.Tests