diff options
-rw-r--r-- | .github/workflows/go.yml | 14 | ||||
-rw-r--r-- | webui/packed_assets.go | 2 |
2 files changed, 15 insertions, 1 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 8200a84a..8abfba63 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -39,3 +39,17 @@ jobs: GITHUB_TOKEN_PUBLIC: ${{ secrets._GITHUB_TOKEN_PUBLIC }} GITLAB_API_TOKEN: ${{ secrets.GITLAB_API_TOKEN }} GITLAB_PROJECT_ID: ${{ secrets.GITLAB_PROJECT_ID }} + + lint: + runs-on: ubuntu-latest + steps: + - name: Install Go + uses: actions/setup-go@v2 + with: + go-version: 1.16.x + + - name: Checkout code + uses: actions/checkout@v2 + + - name: Check Code Formation + run: find . -name "*.go" | while read line; do [ -z "$(gofmt -d "$line" | head)" ] || exit 1; done diff --git a/webui/packed_assets.go b/webui/packed_assets.go index b75ab667..90bc6b38 100644 --- a/webui/packed_assets.go +++ b/webui/packed_assets.go @@ -134,7 +134,7 @@ func (fs vfsgen۰FS) Open(path string) (http.File, error) { } return &vfsgen۰CompressedFile{ vfsgen۰CompressedFileInfo: f, - gr: gr, + gr: gr, }, nil case *vfsgen۰DirInfo: return &vfsgen۰Dir{ |