Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
bxrne committed Oct 12, 2024
1 parent 3fc2053 commit c72b826
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y build-essential libgl1-mesa-dev libxcursor-dev
sudo apt-get install -y build-essential libgl1-mesa-dev libxcursor-dev libxrandr-dev
- name: Install dependencies (Windows)
if: matrix.os == 'windows-latest'
Expand Down Expand Up @@ -82,7 +82,4 @@ jobs:
name: coverage-report
path: coverage.out

- name: Update Coverage Badge
if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
uses: we-cli/coverage-badge-action@main

4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ build-windows:

build-linux:
@echo "Installing Linux dependencies..."
@sudo apt-get install libgl1-mesa-dev -y
@sudo apt-get install libgl1-mesa-dev libxcursor-dev libxrandr-dev -y
CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -o $(BUILD_DIR)/$(BINARY_NAME) $(SRC_DIR)

build-darwin:
Expand All @@ -38,5 +38,3 @@ dev:

.PHONY: all build build-windows build-linux build-darwin test clean dev



0 comments on commit c72b826

Please sign in to comment.