Skip to content

Commit

Permalink
Improve pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
leaanthony committed Sep 18, 2024
1 parent 9bb5c4f commit 860d02d
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/build-and-test-alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ jobs:
uses: actions/checkout@v4

- name: Install linux dependencies
uses: awalsh128/cache-apt-pkgs-action@latest
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update -y && sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev javascriptcoregtk-4.1-dev build-essential pkg-config
with:
packages: libgtk-3-dev libwebkit2gtk-4.1-dev build-essential pkg-config
version: 1.0

- name: Setup Go
uses: actions/setup-go@v5
Expand Down Expand Up @@ -100,7 +103,7 @@ jobs:
vanilla,
vanilla-ts,
]
go-version: [1.22]
go-version: [1.23]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -122,8 +125,11 @@ jobs:
${{ runner.os }}-golang-
- name: Install linux dependencies
uses: awalsh128/cache-apt-pkgs-action@latest
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update -y && sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev javascriptcoregtk-4.1-dev build-essential pkg-config
with:
packages: libgtk-3-dev libwebkit2gtk-4.1-dev build-essential pkg-config
version: 1.0

- name: Build Wails3 CLI
run: |
Expand Down

0 comments on commit 860d02d

Please sign in to comment.