Skip to content

misc fixes

misc fixes #25

Workflow file for this run

name: Build-Test
on: [push, pull_request]
jobs:
build_test:
name: Build & Test
runs-on: ubuntu-latest
#if: github.event.inputs.version == ''
steps:
- uses: actions/checkout@v2
- name: Build
run: dotnet build LuaLUT.Tests -c Test
- name: Test
run: dotnet test LuaLUT.Tests -c Test