Skip to content

Commit

Permalink
feat: Set up continuous integration
Browse files Browse the repository at this point in the history
  • Loading branch information
Harish-osmosys committed Feb 1, 2024
1 parent 5f9b857 commit b9a0ad0
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build and Test
on:
push:
branches: *
pull_request:
branches: *
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.x'
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release --no-build

0 comments on commit b9a0ad0

Please sign in to comment.