Skip to content

fix(💚): fix ci/cd #23 #17

fix(💚): fix ci/cd #23

fix(💚): fix ci/cd #23 #17

Workflow file for this run

name: .NET Core
on:
workflow_dispatch:
pull_request:
branches:
- release/*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
9.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
# # See https://josh-ops.com/posts/github-code-coverage/
# # Add coverlet.collector nuget package to test project - 'dotnet add <TestProject.cspoj> package coverlet
# - name: Test
# run: dotnet test --no-restore --verbosity normal --collect:"XPlat Code Coverage" --logger trx --results-directory coverage
#
# - name: Copy Coverage To Predictable Location
# # run: cp coverage/*/coverage.cobertura.xml coverage/coverage.cobertura.xml
# run: find coverage -type f -name coverage.cobertura.xml -exec cp -p {} coverage/coverage.cobertura.xml \;
#
# - name: Code Coverage Summary Report
# uses: irongut/[email protected]
# # uses: joshjohanning/[email protected]
# with:
# filename: coverage/coverage.cobertura.xml
# badge: true
# format: 'markdown'
# output: 'both'
#
# - name: Upload code coverage results artifact
# uses: actions/upload-artifact@v3
# if: success() || failure()
# with:
# name: code-coverage-results
# path: code-coverage-results.md
# retention-days: 1
- name: Save the PR number in an artifact
if: github.event_name == 'pull_request' && (success() || failure())
shell: bash
env:
PR_NUMBER: ${{ github.event.number }}
run: echo $PR_NUMBER > pr-number.txt
- name: Upload the PR number
uses: actions/upload-artifact@v4
if: github.event_name == 'pull_request' && (success() || failure())
with:
name: pr-number
path: ./pr-number.txt
retention-days: 1