Skip to content

fix awscli patch

fix awscli patch #15

Workflow file for this run

name: Integration test

Check failure on line 1 in .github/workflows/integration.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/integration.yml

Invalid workflow file

(Line: 72, Col: 14): Unrecognized named-value: 'access-key-id'. Located at position 1 within expression: access-key-id, (Line: 80, Col: 17): Unrecognized named-value: 'access-key-id'. Located at position 1 within expression: access-key-id
on:
push:
paths-ignore:
- 'README.md'
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- { python-version: '3.13', awscli-version: "1.41.0", region: us-west-1, access-key-id: '000000000001'}
- { python-version: '3.13', region: us-west-1, access-key-id: 'test'}
- { python-version: '3.12', region: us-east-1, access-key-id: 'test'}
- { python-version: '3.11', region: us-east-1, access-key-id: 'test'}
- { python-version: '3.10', region: us-east-1, access-key-id: 'test'}
- { python-version: '3.9', region: us-east-1, access-key-id: 'test'}
env:
AWS_ACCESS_KEY_ID: ${{ matrix.access-key-id }}
AWS_REGION: ${{ matrix.region }}
AWS_DEFAULT_REGION: ${{ matrix.region }}
AWS_SECRET_ACCESS_KEY: test
steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: '${{ matrix.python-version }}'
- name: Install localstack CLI
run: pip install localstack
- name: Install deps
run: pip install '.[ver1]'
- name: Install specific version of awscli
if: ${{ matrix.awscli-version }}
run: pip install "awscli==${{ matrix.awscli-version }}"
- name: Check aws-cli version
run: |
aws --version
awslocal --version
which aws
which awslocal
- name: Setup BATS
run: |
git clone https://github.com/bats-core/bats-core.git "$HOME"/bats-core
cd "$HOME"/bats-core
sudo ./install.sh /usr/local
- name: Start and wait for LocalStack (Community)
timeout-minutes: 10
run: |
docker pull localstack/localstack:latest
localstack start -d
localstack wait -t 30
- name: Run bats tests
run: |
bats --report-formatter junit -r tests/bin/ --output .
mv report.xml test-results-tests-bin-${{ matrix.python-version }}-${{ matrix.awscli-version }}-${{ matrix.region }}-${{ access-key-id }}.xml
- name: Archive Test Results
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: test-results-tests-bin-${{ matrix.python-version }}-${{ matrix.awscli-version }}-${{ matrix.region }}-${{ access-key-id }}
path: tests-junit-*.xml
retention-days: 30
report:
runs-on: ubuntu-latest
needs: test
if: success() || failure()
steps:
- name: Download Test Results
uses: actions/download-artifact@v4
with:
pattern: test-results-tests-*
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: success() || failure()
with:
files: tests-junit-*.xml
check_name: "Smoke Tests"
action_fail_on_inconclusive: true