Skip to content

Commit

Permalink
Create dotnet-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ctacke authored Jan 19, 2024
1 parent fe0a1d4 commit 9887b64
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/dotnet-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Develop Build

on:
workflow_dispatch:
pull_request:
branches: [ develop ]
push:
branches: [ develop ]

jobs:
build:

runs-on: windows-latest

steps:
- name: Checkout Meadow.Logging
uses: actions/checkout@v3
with:
repository: WildernessLabs/Meadow.Logging
path: Meadow.Logging
ref: develop

- name: Checkout Meadow.Units
uses: actions/checkout@v3
with:
repository: WildernessLabs/Meadow.Units
path: Meadow.Units
ref: develop

- name: Checkout Meadow.Contracts
uses: actions/checkout@v3
with:
path: Meadow.Contracts
ref: develop

- name: Checkout Meadow.CLI
uses: actions/checkout@v3
with:
path: Meadow.CLI

- name: Setup .NET SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version:
8.0.x

- name: Build CLI v1
run: dotnet build -c Release Meadow.CLI/MeadowCLI.sln

- name: Build CLI v2
run: dotnet build -c Release Meadow.CLI/Source/v2/Meadow.CLI.v2.sln


0 comments on commit 9887b64

Please sign in to comment.