Skip to content

Commit

Permalink
move linter to use ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaiR committed Jul 5, 2024
1 parent c174e86 commit b0f098c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,21 @@ on: [ push, pull_request ]
jobs:
lint-source-code:
name: Lint Source Code
runs-on: macos-latest # use macOS to avoid installation of desktop deps
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Dependencies
run: |
sudo apt clean
sudo apt update
sudo apt install xorg-dev libgtk-3-dev
- name: Setup Golang
uses: actions/setup-go@v5
with:
go-version-file: go.mod
architecture: x64
cache: false

- name: Lint
Expand Down

0 comments on commit b0f098c

Please sign in to comment.