Skip to content

Commit 8e1d190

Browse files
committed
ci: replace Perl with Go in test workflow
The project is now Go-based, so the CI workflow should set up Go (via go.mod) instead of Perl.
1 parent d59bc34 commit 8e1d190

1 file changed

Lines changed: 5 additions & 8 deletions

File tree

.github/workflows/test.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,11 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v4
15-
16-
- name: Setup Perl environment
17-
uses: shogo82148/actions-setup-perl@v1
15+
16+
- name: Setup Go
17+
uses: actions/setup-go@v5
1818
with:
19-
perl-version: '5.38'
20-
21-
- name: Install Dependencies
22-
run: cpanm JSON LWP::Simple Test::More
23-
19+
go-version-file: go.mod
20+
2421
- name: Run Tests
2522
run: make test

0 commit comments

Comments
 (0)