this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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.

+5 -8
+5 -8
.github/workflows/test.yml
··· 12 12 13 13 steps: 14 14 - 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 18 18 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 + 24 21 - name: Run Tests 25 22 run: make test