Skip to content

Commit

Permalink
Merge pull request #2 from vpoluyaktov/ffmpeg_version
Browse files Browse the repository at this point in the history
Github Build action updated
  • Loading branch information
vpoluyaktov authored Nov 9, 2023
2 parents f7bc816 + 11bd7cf commit 50a4540
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: Go Build
name: Build Go Project

on:
push:
branches: [ "master" ]
branches:
- '*'
pull_request:
branches: [ "master" ]

Expand Down
4 changes: 2 additions & 2 deletions internal/dto/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ type DisplayConfigCommand struct {
}

func (c *DisplayConfigCommand) String() string {
return fmt.Sprintf("DisplayConfigCommand: %s", c.Config.GetLogLevel)
return fmt.Sprintf("DisplayConfigCommand: %s", c.Config.GetLogLevel())
}

type SaveConfigCommand struct {
Config config.Config
}

func (c *SaveConfigCommand) String() string {
return fmt.Sprintf("SaveConfigCommand: %s", c.Config.GetLogLevel)
return fmt.Sprintf("SaveConfigCommand: %s", c.Config.GetLogLevel())
}

0 comments on commit 50a4540

Please sign in to comment.