mirror of
https://github.com/spectreconsole/spectre.console.git
synced 2026-02-10 04:13:32 +01:00
39 lines
878 B
YAML
39 lines
878 B
YAML
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
|
name: Pull Request
|
|
on: pull_request
|
|
|
|
env:
|
|
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
|
|
DOTNET_CLI_TELEMETRY_OPTOUT: true
|
|
|
|
jobs:
|
|
|
|
###################################################
|
|
# BUILD
|
|
###################################################
|
|
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup .NET SDK (global.json)
|
|
uses: actions/setup-dotnet@v5
|
|
|
|
- name: Build
|
|
shell: bash
|
|
run: |
|
|
dotnet tool restore
|
|
dotnet make
|
|
|
|
- name: Upload Verify Test Results
|
|
if: failure()
|
|
uses: actions/upload-artifact@v5
|
|
with:
|
|
name: verify-test-results
|
|
path: |
|
|
**/*.received.* |