Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
hahaysh committed Mar 16, 2024
2 parents e7358dc + 9a9102d commit aa79ae2
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions .github/workflows/actiondemo2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# 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: Test Build

#on:
# push:
# 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: Restore dependencies
run: dotnet restore ./eShopOnWeb.sln

- name: Build
run: dotnet build ./eShopOnWeb.sln --no-restore
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![Build Status](https://github.com/dotnet-architecture/eShopOnWeb/workflows/eShopOnWeb%20Build%20and%20Test/badge.svg)](https://github.com/dotnet-architecture/eShopOnWeb/actions)

Hello world 2222
Hello world 33333

# Microsoft eShopOnWeb ASP.NET Core Reference Application

Expand Down

0 comments on commit aa79ae2

Please sign in to comment.