runs-on: windows-latest
steps:
+ - name: Set up Go 1.x
+ uses: actions/setup-go@v2
+ with:
+ go-version: ^1.15.2
+ id: go
+
- name: Setup up MSYS2
uses: msys2/setup-msys2@v2
with:
msystem: MSYS
update: true
- install: 'mingw-w64-x86_64-gtk3 mingw-w64-x86_64-glib2 mingw-w64-x86_64-gobject-introspection mingw-w64-x86_64-toolchain base-devel mingw-w64-x86_64-go'
+ path-type: inherit
+ install: 'mingw-w64-x86_64-gtk3 mingw-w64-x86_64-gtk2 mingw-w64-x86_64-toolchain base-devel'
- name: Check out code
uses: actions/checkout@v2