Skip to content

Commit

Permalink
Create ci-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dei79 authored Aug 9, 2023
1 parent 2d07b63 commit d283813
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI Build

on: [push, pull_request, workflow_dispatch]

jobs:
build-core:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Restore
working-directory: dotNet
run: dotnet restore TaskLogging.sln
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1

- name: Build
working-directory: dotNet
run: dotnet build --no-restore -c Release TaskLogging.sln
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1

0 comments on commit d283813

Please sign in to comment.