Add workflow checking that deployed repository can produce "Hello World!" executable #13
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: Check MSYS2 repository | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: msys2/setup-msys2@v2 | |
with: | |
update: true | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install toolchain | |
shell: msys2 {0} | |
run: | | |
`cygpath "${{ github.workspace }}"`/.github/scripts/install-toolchain.sh | |
test: | |
needs: [build] | |
runs-on: [Windows, GCC, ARM64] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 |