FireflySR.Tool.Proxy/.github/workflows/dotnet.yml
2024-05-23 00:21:43 +08:00

34 lines
802 B
YAML

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore -c Release
- name: Test
run: dotnet test --no-build --verbosity normal
- name: Upload
uses: actions/upload-artifact@v4
with:
name: FireflySR.Tool.Proxy
path: bin/Release/net7.0
retention-days: 7