Skip to content

build(deps): Bump System.Linq.Dynamic.Core from 1.3.4 to 1.3.7 in /src #78

build(deps): Bump System.Linq.Dynamic.Core from 1.3.4 to 1.3.7 in /src

build(deps): Bump System.Linq.Dynamic.Core from 1.3.4 to 1.3.7 in /src #78

Workflow file for this run

name: test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ["7.0.x"]
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore
working-directory: ./tests
- name: Build
run: dotnet build --configuration Release --no-restore
working-directory: ./tests
- name: Test
run: dotnet test --no-restore --verbosity normal
working-directory: ./tests