Skip to content

Merge branch 'main' of https://github.com/soat-fiap/bmb.production in… #31

Merge branch 'main' of https://github.com/soat-fiap/bmb.production in…

Merge branch 'main' of https://github.com/soat-fiap/bmb.production in… #31

name: Build and Test
on:
push:
branches-ignore:
- main
tags-ignore:
- '*'
paths-ignore:
- 'releases/**'
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build solution
run: dotnet build --configuration Release --no-restore
- name: Run tests
run: dotnet test --no-restore --verbosity normal