Skip to content

#100 restructuring pipelines #341

#100 restructuring pipelines

#100 restructuring pipelines #341

Workflow file for this run

name: "1. Continuous Integration"
on:
push:
branches:
- "main"
- "version3"
- "feature/*"
- "bugfix/*"
- "hotfix/*"
- "!feature/ci*"
paths-ignore:
- "**/README.md"
pull_request:
branches:
- "main"
- "version3"
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 15
env:
NAME: "Continuous Integration"
steps:
- name: bash-version
run: echo "::add-mask::$NAME"
# - 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