Skip to content

Commit

Permalink
Merge pull request #49 from TrueSparrowSystems/test_cases_workflow
Browse files Browse the repository at this point in the history
added run tests workflow with minimal steps
  • Loading branch information
roy-cse authored Aug 23, 2023
2 parents e48b594 + c711384 commit a15a087
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/run_tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Run Test Cases

on:
pull_request:
branches:
- master
env:
ENVIRONMENT: test
AWS_ACCESS_KEY_ID: local
AWS_SECRET_ACCESS_KEY: local
AWS_REGION: us-east-1

jobs:
test:
runs-on: ubuntu-latest
steps:
- run: |-
echo "Running test cases"

0 comments on commit a15a087

Please sign in to comment.