We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent def8d8e commit d39d420Copy full SHA for d39d420
.github/workflows/ci.yml
@@ -9,8 +9,8 @@ on:
9
- cron: '0 13 */15 * *'
10
11
jobs:
12
- Ubuntu:
13
- name: Linux
+ Go:
+ name: Go
14
runs-on: ubuntu-latest
15
16
env:
@@ -45,3 +45,24 @@ jobs:
45
- name: Run tests
46
working-directory: ${{env.SRC_DIR}}
47
run: make test
48
+
49
+ Aligo:
50
+ name: Aligo
51
+ runs-on: ubuntu-latest
52
53
+ needs: Go
54
55
+ steps:
56
+ - name: Checkout
57
+ uses: actions/checkout@v2
58
59
+ - name: Install Aligo
60
+ run: |
61
+ wget https://apps.kaos.st/aligo/latest/linux/x86_64/aligo
62
+ chmod +x aligo
63
64
+ - name: Print Aligo version info
65
+ run: ./aligo --version
66
67
+ - name: Check Go structs alignment info
68
+ run: ./aligo check ./...
0 commit comments