Add first attempt at execuiting our build in a github action #1
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: Flex CI | ||
on: | ||
push: | ||
branches: ["release/9.1", "develop", "master", "feature/PubSub"] | ||
pull_request: | ||
branches: ["release/9.1", "develop", "master", "feature/PubSub"] | ||
workflow_dispatch: | ||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Checkout Files | ||
uses: actions/checkout@v3 | ||
- name: Build and Test | ||
shell: cmd | ||
working-directory: Build | ||
run: build64.bat /t:remakefw /p:action=test |