Skip to content

Commit

Permalink
localstack on ci
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Puehringer <[email protected]>
  • Loading branch information
lukpueh committed Apr 11, 2024
1 parent 16eda11 commit 0b49183
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test-kms-aws.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test AWS KMS with localstack
on: [ push, pull_request ]

jobs:
test-aws-kms:
runs-on: ubuntu-latest
steps:
- name: Checkout securesystemslib
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633

- name: Set up Python
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d
with:
python-version: '3.x'
cache: 'pip'
cache-dependency-path: 'requirements*.txt'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade tox
- name: Run Tests against LocalStack
run: tox -e local-aws-kms

0 comments on commit 0b49183

Please sign in to comment.