Skip to content

Reformat, update dependencies #3

Reformat, update dependencies

Reformat, update dependencies #3

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal
- name: Package
run: |
dotnet publish CmodConvert -c Release -o Publish --sc false --ucr false /p:DebugType=None /p:DebugSymbols=false
rm Publish\CmodConvert.exe
- name: Upload artifact
uses: actions/upload-artifact@v3
if: success()
with:
name: cmodconvert
path: Publish/