Skip to content

Commit dced457

Browse files
fixing CI
1 parent bcef44f commit dced457

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ jobs:
3636
- name: Install golangci-lint
3737
uses: golangci/golangci-lint-action@v3
3838
with:
39-
working-directory: ${{ env.GOPHERJS_PATH }}
39+
working-directory: ${{ env.GOPHERJS_PATH }}/playground
4040
version: ${{ env.GOLANGCI_VERSION }}
4141
only-new-issues: true
4242
- name: Check go.mod
43-
working-directory: ${{ env.GOPHERJS_PATH }}
43+
working-directory: ${{ env.GOPHERJS_PATH }}/playground
4444
run: go mod tidy && git diff --exit-code
4545

46-
playground_go_tests:
47-
name: Playground Go Tests
46+
go_tests:
47+
name: Go Tests
4848
runs-on: ubuntu-latest
4949
steps:
5050
- uses: actions/checkout@v4
@@ -58,6 +58,6 @@ jobs:
5858
working-directory: ${{ env.GOPHERJS_PATH }}
5959
shell: bash
6060
run: echo "GOROOT=$(go env GOROOT)" >> $GITHUB_ENV
61-
- name: Run Tests
62-
working-directory: ${{ env.GOPHERJS_PATH }}
63-
run: go test -v -race ./playground/...
61+
- name: Run Playground Tests
62+
working-directory: ${{ env.GOPHERJS_PATH }}/playground
63+
run: go test -v -race ./...

0 commit comments

Comments
 (0)