libfirmware/.github/workflows/tests-windows.yaml

26 lines
457 B
YAML
Raw Normal View History

2022-09-04 20:25:05 -07:00
name: Unit Tests on Windows
on: [push,pull_request]
jobs:
build:
runs-on: windows-latest
steps:
2022-09-04 20:27:56 -07:00
- name: Set up MinGW
uses: egor-tensin/setup-mingw@v2
2022-09-04 20:25:05 -07:00
- name: Print GCC version
working-directory: .
run: gcc -v
2022-09-04 20:34:18 -07:00
- name: Print make version
working-directory: .
run: make -v
2022-09-04 20:42:38 -07:00
# huh? how come this does not work? :(
2022-09-04 20:48:10 -07:00
# - name: Compile
# working-directory: .
# run: make
#