Skip to content

chore: Bump the dependencies group with 2 updates (#9) #43

chore: Bump the dependencies group with 2 updates (#9)

chore: Bump the dependencies group with 2 updates (#9) #43

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: |
8.x.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal