Skip to content

Merge pull request #19 from MatheusKoszudikass/new #13

Merge pull request #19 from MatheusKoszudikass/new

Merge pull request #19 from MatheusKoszudikass/new #13

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Blazing Integration
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore Blazing.sln
- name: Build
run: dotnet build Blazing.sln --no-restore --configuration Release
- name: Test
run: dotnet test Blazing.sln --no-build --configuration Release --verbosity normal