Skip to content

chore(deps): update dependency efcore.namingconventions to v9 #589

chore(deps): update dependency efcore.namingconventions to v9

chore(deps): update dependency efcore.namingconventions to v9 #589

name: 'Continuous Integration'
on:
workflow_dispatch:
push:
branches: ['v2']
paths:
- '**.cs'
- '**.csproj'
- '**.sln'
tags-ignore:
- 'v*'
pull_request:
branches: ['v2']
paths:
- '**.cs'
- '**.csproj'
- '**.sln'
jobs:
build:
name: 'Build and Test'
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['8.x']
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
with:
path: ~/.nuget/packages
# Look to see if there is a cache hit for the corresponding requirements file
key: ${{ runner.os }}-${{ matrix.dotnet-version }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-${{ matrix.dotnet-version }}-nuget
- name: Install Dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal