Skip to content

Commit

Permalink
- try a simple build action workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Lemma (Waferwire LLC) committed May 5, 2024
1 parent d48ebe1 commit c176059
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/simple-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net

on:
pull_request

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
shell: bash
run: dotnet build "./Microsoft.Health.Fhir.sln" --no-restore

0 comments on commit c176059

Please sign in to comment.