Skip to content

Commit

Permalink
Fix integ workflow name (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
3coins authored Oct 22, 2024
1 parent 773aa02 commit ff10faf
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/_integration_test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: test
name: integration-test

on:
workflow_dispatch:
Expand Down Expand Up @@ -52,6 +52,13 @@ jobs:
shell: bash
run: poetry install --with test

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}

- name: Run integration tests
shell: bash
run: |
Expand Down

0 comments on commit ff10faf

Please sign in to comment.