ci: check format in CI pipeline #17
@@ -40,3 +40,5 @@ jobs:
|
||||
run: make build
|
||||
- name: test
|
||||
run: make test
|
||||
- name: check:format
|
||||
run: make check-format
|
||||
|
||||
15
Makefile
15
Makefile
@@ -6,3 +6,18 @@ build:
|
||||
|
||||
lint:
|
||||
golint ./...
|
||||
|
||||
run:
|
||||
make build
|
||||
./realdyndns
|
||||
|
||||
format:
|
||||
gofmt -w .
|
||||
|
||||
check-format:
|
||||
@OUTPUT=$$(gofmt -l .); \
|
||||
if [ -n "$$OUTPUT" ]; then \
|
||||
echo "Formatter failed for:"; \
|
||||
echo "$$OUTPUT"; \
|
||||
exit 1; \
|
||||
fi
|
||||
|
||||
@@ -56,7 +56,7 @@ func (c *Config) Load(filePath string) error {
|
||||
return fmt.Errorf("failed to validate config: %w", err)
|
||||
}
|
||||
|
||||
return nil;
|
||||
return nil
|
||||
}
|
||||
|
||||
func (c *Config) validate() error {
|
||||
@@ -68,5 +68,5 @@ func (c *Config) validate() error {
|
||||
return errors.New("check interval must be set when mode is 'Scheduled'")
|
||||
}
|
||||
|
||||
return nil;
|
||||
return nil
|
||||
}
|
||||
@@ -171,8 +171,6 @@ func (i *IonosAPIImpl) SetARecord(tld string, subdomain string, ip net.IP, ttl i
|
||||
return nil, errors.New("error updating record")
|
||||
}
|
||||
|
||||
|
||||
|
||||
changeRecord := ChangeRecord{}
|
||||
json.Unmarshal(responseBody, &changeRecord)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user