Skip to content

Commit

Permalink
refactoring
Browse files Browse the repository at this point in the history
Signed-off-by: Victor Login <[email protected]>
  • Loading branch information
batazor committed Nov 23, 2023
1 parent 4e7da1d commit 8f527a9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,17 @@ on:
- '*'
branches:
- main
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
pull_request:
branches:
- main
paths:
- '**.go'
- 'go.mod'
- 'go.sum'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/logger/tracer/tracer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func TestZapFieldsToOpenTelemetry(t *testing.T) {
{
name: "ErrorField",
fields: []field.Fields{
// nolint: goerr113 // This is a mock error
//nolint: goerr113 // This is a mock error
{"errorKey": errors.New("mock error")},
},
want: []attribute.KeyValue{
Expand Down
3 changes: 2 additions & 1 deletion ui/mobile/flutter/shortlink/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ android {
}

defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
// TODO: Specify your own unique Application ID
// https://developer.android.com/studio/build/application-id.html
applicationId "com.example.shortlink"
minSdkVersion 16
targetSdkVersion 29
Expand Down

0 comments on commit 8f527a9

Please sign in to comment.