Skip to content

AWS Bedrock Agentcore - Travel_assistant app #114

AWS Bedrock Agentcore - Travel_assistant app

AWS Bedrock Agentcore - Travel_assistant app #114

Workflow file for this run

name: lint
on:
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Install pre-commit
run: |
python -m pip install --upgrade pip
pip install pre-commit
- run: make lint
env: # Pass implicit GH token to avoid rate limiting on API calls.
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}