Fix README typos #143
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: | |
robot-tests: | |
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 build_dist.bat | |
run: ./build_dist.bat | |
shell: cmd | |
- name: Run Test 1 | |
run: ./robot-tests/robot-tests.ps1 | |
shell: powershell | |
- name: Hard End | |
run: git config --local --get remote.origin.url |