Skip to content

chore: remove pr template #29

chore: remove pr template

chore: remove pr template #29

name: workflow telemetry
# run on both branch push and tag push
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
dotnet-console:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: Collect Workflow Telemetry
uses: runforesight/workflow-telemetry-action@v1
with:
theme: dark # or light. dark generate charts compatible with Github dark mode.
comment_on_pr: false # post telemetry to PR comment. It won't override existing comment, therefore too noisy for PR.
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: dotnet build
run: dotnet build ./src/dotnet/console/ -c Debug
- name: dotnet test
run: dotnet test ./src/dotnet/console-tests/ -c Debug --logger GitHubActions
- name: dotnet publish
run: dotnet publish ./src/dotnet/console/ -c Debug -o ./out/dotnet-console