Skip to content

Commit

Permalink
run actual tests now
Browse files Browse the repository at this point in the history
  • Loading branch information
HarshCasper committed Jun 3, 2024
1 parent 7a84246 commit 9925caa
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,25 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Change to Directory
run: cd ${{ matrix.directory }}
- name: Setup Nodejs
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install LocalStack
run: pip install localstack awscli-local[ver1] virtualenv
- name: Setup config
run: |
echo "Configuring git for codecommit sample"
git config --global user.email "[email protected]"
git config --global user.name "Localstack Pro-Samples"
- name: Pull the latest docker image
run: docker pull localstack/localstack-pro
- name: Execute a simple test
timeout-minutes: 10
run: |
ls -a
pwd
cd ${{ matrix.directory }}
make test-ci
env:
AWS_ACCESS_KEY_ID: key
AWS_SECRET_ACCESS_KEY: secret
LOCALSTACK_API_KEY: ${{ secrets.TEST_LOCALSTACK_API_KEY }}
DEBUG: 1
DNS_ADDRESS: 127.0.0.1

0 comments on commit 9925caa

Please sign in to comment.