We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b2f4ae commit fd73ea9Copy full SHA for fd73ea9
.github/workflows/tlin_check.yml
@@ -0,0 +1,27 @@
1
+name: tlin-check
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ tlin-check:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: checkout code
13
+ uses: actions/checkout@v3
14
+ with:
15
+ ref: ${{ github.event.pull_request.head.ref }}
16
+ - name: checkout tlin
17
18
19
+ repository: gnoverse/tlin
20
+ ref: main
21
+ - name: setup go
22
+ uses: actions/setup-go@v5
23
24
+ go-version: 1.22
25
+ - name: install tlin
26
+ run: |
27
+ go install github.com/gnoverse/tlin
0 commit comments