Skip to content

Update README.md

Update README.md #165

Workflow file for this run

# Copyright CodeMerx 2020
# This file is part of CodemerxDecompile.
# CodemerxDecompile is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# CodemerxDecompile is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with CodemerxDecompile. If not, see<https://www.gnu.org/licenses/>.
name: Build in Release
on:
workflow_dispatch:
push:
branches:
- master
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Restore SNK
uses: RollyPeres/base64-to-path@v1
with:
filePath: ${{ github.workspace }}/common/CDKey.snk
encodedString: ${{ secrets.CD_SNK }}
- name: Setup DotNet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.4'
- name: Build Solution
run: dotnet build engine/CodemerxDecompileEngine.sln -c Release
- name: Run Tests
run: dotnet test engine/Decompiler.Tests -c Release