Skip to content

Commit fd73ea9

Browse files
committed
build: support tlin in ci
1 parent 0b2f4ae commit fd73ea9

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

Diff for: .github/workflows/tlin_check.yml

+27
Original file line numberDiff line numberDiff line change
@@ -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+
uses: actions/checkout@v3
18+
with:
19+
repository: gnoverse/tlin
20+
ref: main
21+
- name: setup go
22+
uses: actions/setup-go@v5
23+
with:
24+
go-version: 1.22
25+
- name: install tlin
26+
run: |
27+
go install github.com/gnoverse/tlin

0 commit comments

Comments
 (0)