Skip to content

Avoid random websocket test failures by waiting for http server to start #15

Avoid random websocket test failures by waiting for http server to start

Avoid random websocket test failures by waiting for http server to start #15

Workflow file for this run

name: Code Lint
on:
pull_request:
branches:
- main
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- ".github/workflows/code.yml"
env:
GO_VERSION: "1.20.4"
jobs:
lint:
name: Code Lint
runs-on: ubuntu-latest
steps:
- name: Setup Go Environment
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
id: go
- name: Checkout Source Code
uses: actions/checkout@v4
# https://github.com/reviewdog/reviewdog/issues/1158
# Permissions need to match container user
- name: "Give Permissions"
run: |
sudo chown -R root $GITHUB_WORKSPACE
- name: Spelling Check
uses: reviewdog/action-misspell@v1.15.0
- name: Revive Action
uses: morphy2k/revive-action@v2
- name: "Restore Permissions"
run: |
sudo chown -R $(id -u) $GITHUB_WORKSPACE
- name: Check formatting
run: test -z $(gofmt -l .) || (gofmt -l . && exit 1)