Skip to content

Commit

Permalink
fixes following code review
Browse files Browse the repository at this point in the history
  • Loading branch information
8naama committed Jul 1, 2024
1 parent ff7d817 commit f1a6827
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name: Unit and E2E Tests
on: [pull_request]
on:
pull_request:
schedule:
# Run once a week on Sunday
- cron: "0 7 * * 0"

jobs:

#### Unit tests ####
Expand Down Expand Up @@ -31,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
env:
AWS_REGION: 'us-east-1'
TEST_VERSION: 0.0.7357
TEST_VERSION: test
steps:
# Initialize env
- uses: actions/checkout@v4
Expand Down Expand Up @@ -134,6 +139,7 @@ jobs:

# Cleanup
- name: Delete Stack
if: always()
run: |
aws cloudformation delete-stack \
--stack-name auto-test-firehose-log
2 changes: 1 addition & 1 deletion eventbridge-lambda/handler/handler.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package handelr
package handler

import (
"context"
Expand Down
2 changes: 1 addition & 1 deletion eventbridge-lambda/handler/handler_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package handelr
package handler

import (
"context"
Expand Down

0 comments on commit f1a6827

Please sign in to comment.