Add GraphQL client integration (#2368) #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
- release/** | |
pull_request: | |
permissions: | |
contents: read | |
env: | |
BUILD_CACHE_KEY: ${{ github.sha }} | |
CACHED_BUILD_PATHS: | | |
${{ github.workspace }}/dist-serverless | |
jobs: | |
lint: | |
name: Lint Sources | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- run: | | |
pip install tox | |
tox -e linters | |
check-ci-config: | |
name: Check CI config | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- run: | | |
python scripts/split-tox-gh-actions/split-tox-gh-actions.py --fail-on-changes | |
build_lambda_layer: | |
name: Build Package | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Setup build cache | |
uses: actions/cache@v3 | |
id: build_cache | |
with: | |
path: ${{ env.CACHED_BUILD_PATHS }} | |
key: ${{ env.BUILD_CACHE_KEY }} | |
- name: Build Packages | |
run: | | |
echo "Creating directory containing Python SDK Lambda Layer" | |
pip install virtualenv | |
# This will also trigger "make dist" that creates the Python packages | |
make aws-lambda-layer | |
- name: Upload Python Packages | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ github.sha }} | |
path: | | |
dist/* | |
docs: | |
name: Build SDK API Doc | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- run: | | |
pip install virtualenv | |
make apidocs | |
cd docs/_build && zip -r gh-pages ./ | |
- uses: actions/upload-artifact@v3.1.1 | |
with: | |
name: ${{ github.sha }} | |
path: docs/_build/gh-pages.zip |