Change license to MIT #14
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: Build Windows Forms app | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: [windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup MSBuild | |
uses: microsoft/[email protected] | |
- name: Create 64-bit Release build | |
run: msbuild.exe /p:Configuration=Release /p:Platform=x64 tic_tac_toe.sln | |
- name: Create 32-bit Release build | |
run: msbuild.exe /p:Configuration=Release /p:Platform=x86 tic_tac_toe.sln |