Skip to content

Commit

Permalink
add x11 to gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
adelowo committed Jan 1, 2025
1 parent 0cc786f commit b5f498c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ jobs:
submodules: true
token: ${{ secrets.GITHUB_TOKEN }}

- name: Install X11 development libraries
run: |
sudo apt-get update
sudo apt-get install -y libx11-dev
- name: Get and verify dependencies
run: go mod download && go mod verify

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install X11 development libraries
run: |
sudo apt-get update
sudo apt-get install -y libx11-dev
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
Expand Down

0 comments on commit b5f498c

Please sign in to comment.