Fix README typos #205
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
- name: Setup NuGet | |
uses: NuGet/[email protected] | |
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/ |