Skip to content

Commit

Permalink
Merge pull request #6 from zvecr/ci_test
Browse files Browse the repository at this point in the history
Add CI test phase
  • Loading branch information
zvecr authored Dec 25, 2020
2 parents 62db23f + c69bac6 commit 9ab03b6
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,29 @@ jobs:
name: artifacts
path: .build/QMK_MSYS.*

test:
runs-on: windows-latest

needs: [build]

steps:
- uses: actions/download-artifact@v2

- name: Run Install
run: |
Start-Process ./artifacts/QMK_MSYS.exe -ArgumentList "/VERYSILENT /SUPPRESSMSGBOXES /NORESTART" -wait
- name: Run QMK cli
env:
MSYSTEM: MINGW64
shell: cmd
run: |
c:\Users\runneradmin\AppData\Roaming\QMK_MSYS\usr\bin\bash.exe -l -c 'qmk -h' | findstr /c:"CLI wrapper for running QMK commands"
publish:
runs-on: ubuntu-latest

needs: [build]
needs: [build, test]

if: github.event.release.tag_name

Expand Down

0 comments on commit 9ab03b6

Please sign in to comment.