Skip to content

Commit

Permalink
disable lint for now
Browse files Browse the repository at this point in the history
  • Loading branch information
mjudeikis committed Nov 26, 2024
1 parent 6ee15f9 commit a2791f3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 11 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,15 @@ jobs:
- name: Run e2e Tests
run: make e2e

lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.23
- name: Lint Code
run: make lint
# https://github.com/castai/kilo/issues/12
#lint:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: Set up Go
# uses: actions/setup-go@v4
# with:
# go-version: 1.23
# - name: Lint Code
# run: make lint

6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ lint: $(STATICCHECK_BINARY)
echo "$$fmt_res"; \
exit 1; \
fi

unit:
go test --race ./...

Expand Down Expand Up @@ -196,6 +196,10 @@ website/build/index.html: website/docs/README.md docs/api.md
container:
docker build -t $(FULLY_QUALIFIED_IMAGE):latest -f Dockerfile .

container-linux:
FULLY_QUALIFIED_IMAGE=$(FULLY_QUALIFIED_IMAGE-
OS=linux ARCH=amd64 make container

clean: bin-clean
rm -rf .cache

Expand Down

0 comments on commit a2791f3

Please sign in to comment.