Skip to content

Commit

Permalink
release: 0.6.3 (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
devxb authored Sep 23, 2024
2 parents ec7fa17 + 8c51fe2 commit 8cfc022
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
"GH_OAUTH_SECRET=${{ secrets.GH_OAUTH_SECRET }}"
"INTERNAL_SECRET=${{ secrets.INTERNAL_SECRET }}"
"SLACK_TOKEN=${{ secrets.SLACK_TOKEN }}"
"JWT_KEY= ${{ secrets.JWT_KEY }}"
"JWT_KEY=${{ secrets.JWT_KEY }}"
deploy:
needs: build
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ netx.backpressure=40
netx.logging.level=info

github.token=
jwt.key=
oauth.client.id.github=
oauth.client.secret.github=

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import io.kotest.core.spec.style.DescribeSpec
import io.kotest.matchers.nulls.shouldNotBeNull
import org.junit.jupiter.api.DisplayName
import org.springframework.test.context.ContextConfiguration
import java.util.*

@ContextConfiguration(
classes = [
Expand All @@ -19,7 +20,6 @@ internal class GotchaServiceTest(
context("GotchaType으로 default를 입력받으면,") {
it("random한 GotchaResponse를 응답한다.") {
val result = gotchaService.gotcha(1000L, GotchaType.DEFAULT)

result.shouldNotBeNull()
}
}
Expand Down

0 comments on commit 8cfc022

Please sign in to comment.