Skip to content

docs: header and badge on README #16

docs: header and badge on README

docs: header and badge on README #16

Workflow file for this run

on:
push:
branches:
- main
name: Unit and Architectural tests
jobs:
build:
name: Build project and run Architectural and Unit testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.x
dotnet-quality: preview
- name: 🧱 Install dependencies
run: make install
- name: 🏗️ Build project
run: make build
- name: 🧪 Run tests
run: make test