Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Navyum authored Jan 6, 2025
1 parent 031f975 commit 34af81e
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,18 @@ jobs:
with:
go-version: 1.21.4

- name: Install glfw
uses: RpxdYTX/install-glfw-deps@v2
- name: Install GLFW
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install -y libglfw3-dev

- name: Install GLFW
if: matrix.os == 'macos-latest'
run: brew install glfw

- name: Install GLFW
if: matrix.os == 'windows-latest'
run: |
choco install glfw
- name: Build
run: |
Expand Down

0 comments on commit 34af81e

Please sign in to comment.