fix: Refactor collection change notifications and sorting #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) Stéphane ANDRE. | |
# Licensed under the MIT license. | |
# This continuous integration pipeline is triggered anytime a user pushes code to main branch. | |
# This pipeline builds the solution and runs unit tests | |
name: Build | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- .github/workflows/ci.yml | |
- .github/GitVersion.yml | |
- 'src/**' | |
workflow_dispatch: | |
jobs: | |
# GitVersion | |
gitversion: | |
timeout-minutes: 5 | |
runs-on: windows-latest | |
outputs: | |
full_version: ${{ steps.gitversion.outputs.SemVer }} | |
suffix_label: ${{ steps.gitversion.outputs.PreReleaseTag }} | |
steps: | |
# Checkout | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# Install Git version | |
- name: Install GitVersion | |
uses: gittools/actions/gitversion/[email protected] | |
with: | |
versionSpec: '5.x' | |
# Check Git version | |
- name: Check Git Semantic Version | |
id: gitversion | |
uses: gittools/actions/gitversion/[email protected] # https://github.com/GitTools/actions/blob/main/docs/examples/github/gitversion/execute/usage-examples.md | |
with: | |
useConfigFile: true | |
configFilePath: .\.github\GitVersion.yml | |
disableNormalization: true | |
# Build and test | |
build-and-tests: | |
uses: avantipoint/workflow-templates/.github/workflows/dotnet-build.yml@master # https://github.com/AvantiPoint/workflow-templates/blob/master/.github/workflows/dotnet-build.yml | |
needs: [ gitversion ] | |
with: | |
name: Build all projects | |
build-args: '/p:GitVersion=${{ needs.gitversion.outputs.full_version }} /p:VersionSuffix=${{ needs.gitversion.outputs.suffix_label }}' | |
dotnet-test-logger: GitHubActions --no-build --no-restore | |
solution-path: .\src\MyNetUtilities.sln | |
nugetFeedUrl: ${{ vars.PRIVATE_NUGET_API_SOURCE }} | |
secrets: | |
nugetUserName: ${{ vars.PRIVATE_NUGET_API_USERNAME }} | |
nugetToken: ${{ secrets.PRIVATE_NUGET_API_KEY }} |