This repository has been archived by the owner on Oct 19, 2023. It is now read-only.
Update T544.cs (#209) #419
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 | |
on: | |
push: | |
branches: [ main, develop ] | |
pull_request: | |
branches: [ main, develop ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
# Checkout | |
steps: | |
- uses: actions/checkout@v3 | |
# Setup | |
- name: Setup Build | |
uses: actions/setup-dotnet@v3 | |
# Restore packages | |
- name: Restore dependencies | |
run: dotnet restore | |
# Build | |
- name: Build | |
run: dotnet build --no-restore |