Skip to content

Merge pull request #23 from barzin144/breaking/accept-data-in-json #59

Merge pull request #23 from barzin144/breaking/accept-data-in-json

Merge pull request #23 from barzin144/breaking/accept-data-in-json #59

Workflow file for this run

name: Build
on:
workflow_dispatch: {}
push:
branches:
- main
- 'release/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
DOTNET_VERSION: '8.0.x'
SOLUTION_PATH: ./Zus.sln
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Restore
run: dotnet restore ${{ env.SOLUTION_PATH }}
- name: Build
run: dotnet build --no-restore --configuration Release