✅Build Status Check (main branch) #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ✅Build Status Check | |
run-name: ✅Build Status Check (${{ github.base_ref }} branch) | |
defaults: | |
run: | |
shell: pwsh | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
build_vel_empty_status_check: | |
name: VelEmpty Proj Template Build Status Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: "${{ vars.NET_SDK_VERSION }}" | |
- name: Build Project | |
run: | | |
$projFilePath = "${{ github.workspace }}/VelaptorTemplates/Templates/VelEmpty/VelEmpty.csproj"; | |
dotnet build $projFilePath -c Release; |