Bump AutoMapper from 11.0.1 to 12.0.1 #1173
Workflow file for this run
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: .NET Core | |
on: | |
push: | |
paths-ignore: | |
- 'README.md' | |
pull_request: | |
paths-ignore: | |
- 'README.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup .NET Core | |
uses: actions/[email protected] | |
with: | |
dotnet-version: '6.0.x' | |
- name: Install Dependencies | |
run: dotnet restore | |
- name: Build (Release) | |
run: dotnet build --configuration Release --no-restore |