Skip to content

Commit

Permalink
ch: add build script
Browse files Browse the repository at this point in the history
  • Loading branch information
bolorundurowb committed Aug 5, 2024
1 parent a73f0db commit b8a0db5
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build and Test

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

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x

- name: Restore dependencies
run: dotnet restore

- name: Build
run: dotnet build --configuration Release

0 comments on commit b8a0db5

Please sign in to comment.