Skip to content

chore: Bump ncipollo/release-action from 1.14.0 to 1.15.0 in the depe… #52

chore: Bump ncipollo/release-action from 1.14.0 to 1.15.0 in the depe…

chore: Bump ncipollo/release-action from 1.14.0 to 1.15.0 in the depe… #52

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build_and_test:
runs-on: ubuntu-latest
env:
solutionFile: CleanArchitecture.sln
projectName: CleanArchitecture
steps:
- uses: actions/checkout@v4
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
9.x.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal