Skip to content

Commit

Permalink
Rvert changes
Browse files Browse the repository at this point in the history
  • Loading branch information
KsiProgramming committed Nov 28, 2024
1 parent 1b6fc3d commit 2f6cb3b
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 311 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/build.cmd

This file was deleted.

81 changes: 0 additions & 81 deletions .github/workflows/build.ps1

This file was deleted.

74 changes: 0 additions & 74 deletions .github/workflows/build.sh

This file was deleted.

119 changes: 20 additions & 99 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,111 +1,32 @@
name: Build
name: Build & Test

on: [push, pull_request]
on:
workflow_call:
inputs:
dotnet-version:
type: string
required: true
default: 8.0.x

jobs:
build:
name: "Build, Test, Analyze and Publish"
runs-on: windows-latest

env:
DOTNET_NOLOGO: true

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup .NET SDKs
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Cache .nuke/temp
uses: actions/cache@v4
with:
path: |
.nuke/temp
key: ${{ runner.os }}-${{ hashFiles('NodeVersion') }}

- name: Run NUKE
run: ./build.ps1
env:
NuGetApiKey: ${{ secrets.NUGETAPIKEY }}

- name: Check for 'lcov.info' existence
id: check_files
uses: andstor/file-existence-action@v3
with:
files: "TestResults/reports/lcov.info"

- name: coveralls
uses: coverallsapp/github-action@v2
if: steps.check_files.outputs.files_exists == 'true'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
file: TestResults/reports/lcov.info

- name: Upload artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: windows-artifacts
path: |
./Artifacts/*
./TestResults/*.trx
only-unit-tests:
name: "Run Unit Tests Only"
strategy:
matrix:
os: [ubuntu-24.04, macos-15]

runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Chceckout code
uses: actions/checkout@v4

- name: Setup .NET SDKs
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
with:
dotnet-version: ${{ inputs.dotnet-version }}

- name: Run NUKE
run: ./build.sh UnitTests
- name: Restore dependencies
run: dotnet restore

- name: Upload artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-artifacts
path: |
./TestResults/*.trx
publish-test-results:
name: "Publish Tests Results"
needs: [ build, only-unit-tests ]
runs-on: ubuntu-latest
permissions:
checks: write
pull-requests: write
if: always()

steps:
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
- name: Build code
run: dotnet build --no-restore

- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
with:
comment_mode: always
files: "artifacts/**/**/*.trx"
- name: Test code
run: dotnet test --no-build --verbosity normal
50 changes: 0 additions & 50 deletions .github/workflows/codeql.yml

This file was deleted.

0 comments on commit 2f6cb3b

Please sign in to comment.