Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: Run tests
on:
pull_request:
paths-ignore:
- 'README.md'
- 'scripts/**'
- 'docs/**'
- "README.md"
- "scripts/**"
- "docs/**"

jobs:
test:
Expand All @@ -20,8 +20,13 @@ jobs:
- name: build local binaries for test
run: devbox run -- make build lint test

- name: code tests
run: make test GOFLAGS="-v"
- name: e2e tests
run: devbox run -- make e2e-tests
env:
FN_MODE: exec

- name: e2e tests
run: devbox run -- make e2e-tests
env:
FN_MODE: container

7 changes: 1 addition & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
*~
/bin
/.go
/.push-*
/.container-*
/.dockerfile-*
/.licenses
/.buildx-initialized
schema-bundle/
4 changes: 2 additions & 2 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ linters:
- goconst
- gocritic
- gocyclo
- gosec
# - gosec
- govet
- ineffassign
- misspell
- nolintlint
- predeclared
- revive
# - revive
- staticcheck
- thelper
- tparallel
Expand Down
Loading
Loading