[net]chore: adjust structure in the Substrate.Gear.Client project #102
Workflow file for this run
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
name: '[net] CI (.Net)' | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- '.github/workflows/net-ci.yml' | |
- 'net/**' | |
- 'Sales.Net.sln' | |
pull_request: | |
paths: | |
- '.github/workflows/net-ci.yml' | |
- 'net/**' | |
- 'Sales.Net.sln' | |
jobs: | |
build-test: | |
name: Build & Test | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Check Code | |
uses: actions/checkout@v4 | |
- name: Set Up .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore Solution | |
run: >- | |
dotnet restore | |
- name: Build Solution | |
run: >- | |
dotnet build --no-restore --configuration Debug | |
- name: Test Solution | |
run: >- | |
dotnet test --no-build --configuration Debug | |
--logger "trx;LogFileName=TestResults.trx" | |
- name: Upload Test Results | |
if: ${{ success() || failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-results | |
path: | | |
net/**/*.trx | |
!net/**/Sails.Tests.Shared/**/*.trx |