Skip to content

Feature/modernize

Feature/modernize #30

Workflow file for this run

name: ThumbezaTech.Leads dotnet CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
cache: true
- name: Restore dependencies
run: dotnet restore
# - name: Test
# run: dotnet test --no-restore -c "Release"
- name: Build
run: dotnet build --no-restore -c "Release"