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