Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
msdundar committed Jun 13, 2021
1 parent c2af6ef commit 65c6038
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ jobs:
- name: Terraform apply
run: terraform apply -auto-approve
- name: Run test suite
run: go test
run: go test ./...
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.0] - 2021-06-21
## [1.0.0] - 2021-06-14

Initial version.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ on CI, depending on your needs.

## Install

![logo](https://raw.githubusercontent.com/msdundar/kanarya/main/assets/logo_256.png?raw=true)

```sh
go get github.com/msdundar/kanarya
```
Expand Down
Binary file removed assets/logo_256.png
Binary file not shown.
Binary file removed assets/logo_512.png
Binary file not shown.
6 changes: 1 addition & 5 deletions lambda_publish_version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func TestPublishNewVersion(t *testing.T) {
lastModifiedTime, err := time.Parse("2006-01-02T15:04:05", lastModifiedStr)

if err != nil {
t.Fatalf("Can not parse lastModifiedTime returned by PublishNewVersion. Err %v", err)
t.Fatalf("Can not parse lastModifiedTime (%v) returned by PublishNewVersion. Err %v", lastModifiedTime, err)
}

vInt, err := strconv.Atoi(vString)
Expand All @@ -49,8 +49,4 @@ func TestPublishNewVersion(t *testing.T) {
if version != vString {
t.Fatalf("PublishNewVersion should return a new version number, but returned %v", version)
}

if lastModifiedTime.Day() != time.Now().Day() {
t.Fatalf("PublishNewVersion should return an up-to-date last modified, but returned %v", lastModifiedTime)
}
}

0 comments on commit 65c6038

Please sign in to comment.