Skip to content

Commit

Permalink
ci: add msys workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jgillich committed Jan 23, 2024
1 parent db2fceb commit 82d2e93
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/msys2.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: msys2

on:
pull_request:
push:

jobs:
msys2:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up msys
uses: msys2/setup-msys2@v2
with:
msystem: MSYS
update: true
install: mingw-w64-gcc mingw-w64-pkg-config mingw-w64-gtk4 mingw-w64-libadwaita
- name: Set up Go
uses: actions/setup-go@v4
- name: Build
run: |
go build main.go

0 comments on commit 82d2e93

Please sign in to comment.