Skip to content

Bump the all group with 1 update #20

Bump the all group with 1 update

Bump the all group with 1 update #20

# WARNING: This file is automatically generated by ../regenerate-actions.sh
name: CI
on:
pull_request:
branches:
- main
- support/*
paths-ignore:
- docs/**
- README.md
- .editorconfig
- .gitattributes
- .gitignore
- .github/ISSUE_TEMPLATE/**
- .github/pull_request_template.md
defaults:
run:
shell: bash
jobs:
build:
name: Continuous integration
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8.x
9.x
- name: Setup NuGet
run: |
dotnet nuget update source csgals --store-password-in-clear-text --username CSGALS --password ${{ secrets.GITHUB_TOKEN }}
dotnet nuget enable source csgals
- name: Restore
run: dotnet restore
- name: Build
run: dotnet publish --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Debug --logger GitHubActions -p:CollectCoverage=true
-p:CoverletOutputFormat=cobertura
- name: Pack
run: dotnet pack -p:PackageOutputPath="$(pwd)/artifacts" --configuration Release
--no-restore
- name: Build CSS Packages
run: |
bash package.sh
- name: Upload Artifacts
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: artifacts
if-no-files-found: error
path: |
artifacts/*