Skip to content

Update dotnet-format-daily.yml #96

Update dotnet-format-daily.yml

Update dotnet-format-daily.yml #96

Workflow file for this run

# yaml-language-server: $schema=https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/github-workflow.json
name: Test Build Supported Verions
on:
push:
branches:
- '*'
#- '!master'
env:
# Disable the .NET logo in the console output.
DOTNET_NOLOGO: true
# Disable the .NET first time experience to skip caching NuGet packages and speed up the build.
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
# Disable sending .NET CLI telemetry to Microsoft.
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
build:
name: Test Build Supported Verions
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@master
with:
dotnet-version: 6.0.x
- name: Build Player Switcher for test
run: dotnet pack src/Bannerlord.PlayerSwitcher/Bannerlord.PlayerSwitcher.csproj --configuration Release -p:GameFolder="$PWD/bannerlord";
shell: pwsh