From 74895645b5b621906e7c99ab0b7c06c6dd987f30 Mon Sep 17 00:00:00 2001 From: Jimmie Houts Date: Sun, 5 May 2024 12:29:53 -0700 Subject: [PATCH] Creates build.yml (#3) * Create build.yml * restore workloads * Fix typo --- .github/workflows/build.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..cb90169 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,28 @@ +# 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 + +name: Build MercyFork + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: 8.0.x + - name: Workload restore + run: dotnet workload restore + - name: Restore dependencies + run: dotnet restore + - name: Build + run: dotnet build --no-restore