Skip to content

add ci for azure and github #1

add ci for azure and github

add ci for azure and github #1

Workflow file for this run

name: Build [CI]
on:
push:
branches: [master, develop, feature/*, bugfix/*]
pull_request:
branches: [master, develop]
jobs:
build-and-test:
runs-on: ubuntu-latest
env:
solution: "**/*.sln"
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
working-directory: ${{ env.solution }}
- name: Build
run: dotnet build --no-restore
working-directory: ${{ env.solution }}
- name: Test
run: dotnet test
working-directory: ./