Skip to content

feat(fxtestcontainer): Provided module #39

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 11, 2025
Merged
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
1 change: 1 addition & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
- "fxjsonapi"
- "fxslack"
- "fxredis"
- "fxtestcontainer"
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
31 changes: 31 additions & 0 deletions .github/workflows/fxtestcontainer-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: "fxtestcontainer-ci"

on:
push:
branches:
- "feat**"
- "fix**"
- "hotfix**"
- "chore**"
paths:
- "fxtestcontainer/**.go"
- "fxtestcontainer/go.mod"
- "fxtestcontainer/go.sum"
pull_request:
types:
- opened
- synchronize
- reopened
branches:
- main
paths:
- "fxtestcontainer/**.go"
- "fxtestcontainer/go.mod"
- "fxtestcontainer/go.sum"

jobs:
ci:
uses: ./.github/workflows/common-ci.yml
secrets: inherit
with:
module: "fxtestcontainer"
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@
| [fxgcppubsub](fxgcppubsub) | Module for [GCP Pub/Sub](https://cloud.google.com/pubsub) |
| [fxgomysqlserver](fxgomysqlserver) | Module for [Go Mysql Server](https://github.com/dolthub/go-mysql-server) |
| [fxjsonapi](fxjsonapi) | Module for [JSON API](https://github.com/google/jsonapi) |
| [fxslack](fxslack) | Module for [Slack](https://api.slack.com/) |
| [fxredis](fxredis) | Module for [Redis](https://redis.io/docs/connect/clients/go/) |
| [fxslack](fxslack) | Module for [Slack](https://api.slack.com/) |
| [fxtestcontainer](fxtestcontainer) | Module for [Testcontainers](https://github.com/testcontainers/testcontainers-go) |

## Contributing

Expand Down
65 changes: 65 additions & 0 deletions fxtestcontainer/.golangci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
run:
timeout: 5m
concurrency: 8

linters:
enable:
- asasalint
- asciicheck
- bidichk
- bodyclose
- containedctx
- contextcheck
- cyclop
- decorder
- dogsled
- durationcheck
- errcheck
- errchkjson
- errname
- errorlint
- exhaustive
- forbidigo
- forcetypeassert
- gocognit
- goconst
- gocritic
- gocyclo
- godot
- godox
- gofmt
- goheader
- gomoddirectives
- gomodguard
- goprintffuncname
- gosec
- gosimple
- govet
- grouper
- importas
- ineffassign
- interfacebloat
- loggercheck
- maintidx
- makezero
- misspell
- nestif
- nilerr
- nilnil
- nlreturn
- nolintlint
- nosprintfhostport
- prealloc
- predeclared
- promlinter
- reassign
- staticcheck
- tenv
- thelper
- tparallel
- typecheck
- unconvert
- unparam
- unused
- usestdlibvars
- whitespace
Loading
Loading