Skip to content

Commit 899a6ff

Browse files
committed
fix
1 parent ef0a088 commit 899a6ff

1 file changed

Lines changed: 18 additions & 8 deletions

File tree

.github/workflows/test.yaml

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v6
20-
20+
2121
- name: Install Go
2222
uses: actions/setup-go@v6
2323
with:
24-
go-version: '1.26'
24+
go-version: "1.26"
2525
check-latest: true
26-
26+
2727
- name: Install libraries for ubuntu
2828
run: |
2929
sudo apt install libx11-dev
@@ -48,13 +48,23 @@ jobs:
4848
steps:
4949
- name: Checkout
5050
uses: actions/checkout@v6
51-
51+
5252
- name: Install Go
5353
uses: actions/setup-go@v6
5454
with:
55-
go-version: '1.26'
55+
go-version: "1.26"
5656
check-latest: true
5757

58+
- name: Install libraries for ubuntu
59+
run: |
60+
sudo apt install libx11-dev
61+
62+
- name: Print environment
63+
run: |
64+
which go
65+
go env
66+
make vars
67+
5868
- name: Test code generation
5969
run: |
6070
make cleanup-generate
@@ -66,17 +76,17 @@ jobs:
6676
steps:
6777
- name: Checkout
6878
uses: actions/checkout@v6
69-
79+
7080
- name: Install Go
7181
uses: actions/setup-go@v6
7282
with:
73-
go-version: '1.26'
83+
go-version: "1.26"
7484
check-latest: true
7585

7686
- name: Install libraries for ubuntu
7787
run: |
7888
sudo apt install libx11-dev
79-
89+
8090
- name: Run golangci-lint
8191
uses: golangci/golangci-lint-action@v9
8292
with:

0 commit comments

Comments
 (0)