Skip to content

Commit

Permalink
Create build-common.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Foretack authored Sep 29, 2023
1 parent 0284cfd commit 5f7ea92
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build-common.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build (Common)

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:

build:

strategy:
matrix:
configuration: [Debug, Release]

runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install .NET 6
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x

- name: Build
run: |
cd .\MiniTwitch.Common\
dotnet build -c $env:Configuration
env:
Configuration: ${{ matrix.configuration }}

0 comments on commit 5f7ea92

Please sign in to comment.