Skip to content

Commit

Permalink
Create pipeline.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tautvydasversockas committed Oct 14, 2021
1 parent 5d2d77c commit 2c8d257
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: .NET

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
- name: Publish
uses: brandedoutcast/publish-nuget@v2.5.5
with:
PROJECT_FILE_PATH: Kafka.OffsetManager/Kafka.OffsetManager.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}

0 comments on commit 2c8d257

Please sign in to comment.