Skip to content

Fix README typos

Fix README typos #205

Workflow file for this run

name: CI
on:
# Trigger the workflow on push or pull requests, but only for the
# main branch
push:
branches:
- main
- '*/ci'
pull_request:
branches:
- main
jobs:
msbuild:
runs-on: 'windows-latest'
steps:
- name: Checkout Raccine
uses: actions/checkout@v2
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.2
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
- name: Setup NuGet
uses: NuGet/setup-nuget@v1.0.2
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
- name: Nuget Restore
run: nuget restore Raccine.sln
- name: Run msbuild of Raccine for x86 release
run: msbuild -m /p:Configuration=Release /p:Platform=x86
- name: Run msbuild of Raccine for x64 release
run: msbuild -m /p:Configuration=Release /p:Platform=x64
- name: Run msbuild of RaccineGUI for release
run: msbuild -m /p:Configuration=Release
working-directory: ./RaccineGUI/RaccineCfg
- name: Run msbuild of RaccineGUI for release
run: msbuild -m /p:Configuration=Release
working-directory: ./RaccineGUI/RaccineCfg
- name: Run Tests (x64)
run: Raccine-Test.exe
working-directory: ./x64/Release
shell: cmd
- name: Run Tests (x86)
run: Raccine-Test.exe
working-directory: ./Release
shell: cmd
- name: Run build_dist.bat
run: ./build_dist.bat
shell: cmd
- name: Upload Raccine
uses: actions/upload-artifact@v2
with:
name: Raccine
path: Raccine/