Skip to content

Add editorconfig

Add editorconfig #14

Workflow file for this run

name: Build
on:
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v3
with:
global-json-file: global.json
- name: Install dependencies
run: dotnet restore -r linux-x64
- name: Publish
run: dotnet publish src/HelixCoreServerCtl -r linux-x64 --self-contained true --configuration Release --no-restore -p:DebugType=None