Skip to content

Commit

Permalink
Initial CI commit
Browse files Browse the repository at this point in the history
  • Loading branch information
redmushie committed Sep 21, 2023
1 parent cd6cbf2 commit 1a79599
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/ci-wip.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
on:
push:
branches:
- feature/github-ci
pull_request:
branches:
- feature/github-ci
types: [opened, reopened, synchronize]

name: ci-wip

env:
DOTNET_VERSION: 7.0.x

jobs:

build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup .NET SDK ${{ env.DOTNET_VERSION }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

- name: Install dependencies
run: dotnet restore

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

- name: Test
run: dotnet test --no-restore --verbosity normal

0 comments on commit 1a79599

Please sign in to comment.