Skip to content

Initial CI commit

Initial CI commit #1

Workflow file for this run

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