From eceac366584f95fc04c95839be8b2a7eda24e3a3 Mon Sep 17 00:00:00 2001 From: Aelys Date: Thu, 26 Oct 2023 16:50:08 +0200 Subject: [PATCH] Create build-validation.yml test workflow --- .github/workflows/build-validation.yml | 34 ++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/build-validation.yml diff --git a/.github/workflows/build-validation.yml b/.github/workflows/build-validation.yml new file mode 100644 index 0000000..8bd0765 --- /dev/null +++ b/.github/workflows/build-validation.yml @@ -0,0 +1,34 @@ +name: build + +on: + push: + pull_request: + branches: [ main ] + paths: + - '**.cs' + - '**.csproj' + +env: + DOTNET_VERSION: '6.0.401' # The .NET SDK version to use + +jobs: + build: + + name: build-${{matrix.os}} + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macOS-latest] + + steps: + - uses: actions/checkout@v3 + - name: Setup .NET Core + uses: actions/setup-dotnet@v3 + with: + dotnet-version: ${{ env.DOTNET_VERSION }} + + - name: Install dependencies + run: dotnet restore + + - name: Build + run: dotnet build --configuration Release --no-restore