Skip to content

fix logo and file stuff to pack #64

fix logo and file stuff to pack

fix logo and file stuff to pack #64

Workflow file for this run

name: "1. Continuous Integration"
on:
push:
branches:
- "main"
- "version3.0.1"
- "feature/*"
- "bugfix/*"
- "hotfix/*"
paths-ignore:
- "**/README.md"
pull_request:
branches:
- "main"
- "version3.0.1"
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release --no-build