Skip to content

Commit

Permalink
added Successful and Failed, github action
Browse files Browse the repository at this point in the history
  • Loading branch information
md-redwan-hossain committed Jun 13, 2024
1 parent 4c1ee31 commit fd350d7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: DotNet 8

on:
push:
branches: ["main", "develop"]
pull_request:
branches: ["main", "develop"]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Setup DotNet 8
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
- name: Restore dependencies
run: dotnet restore "SharpOutcome.sln"
- name: Build
run: dotnet build "SharpOutcome.sln" --configuration Release --no-restore

0 comments on commit fd350d7

Please sign in to comment.