Skip to content

Commit

Permalink
IO: Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nico-corthorn committed Nov 11, 2024
1 parent a570cd4 commit 774cfc2
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ jobs:
- name: Install dependencies
run: |
make install
- name: Lint
run: |
make lint
- name: Test with pytest
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
Expand All @@ -36,10 +33,18 @@ jobs:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-2
- name: Deploy with SAM
- name: SAM build
if: success()
env:
AWS_SAM_STACK_NAME: ${{ secrets.AWS_SAM_STACK_NAME }}
run: |
make sambuild
- name: Lint
run: |
make lint
- name: SAM deploy
if: success()
env:
AWS_SAM_STACK_NAME: ${{ secrets.AWS_SAM_STACK_NAME }}
run: |
make samdeploy

0 comments on commit 774cfc2

Please sign in to comment.