Skip to content

FIX: Actually include tes3merge in release builds on operating system… #31

FIX: Actually include tes3merge in release builds on operating system…

FIX: Actually include tes3merge in release builds on operating system… #31

Workflow file for this run

name: FastCheck
on:
pull_request:
branches: [ master, main ]
push:
branches: [ dev* ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal --filter TestCategory!=Installation