Track asset files as well #65
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: integration-tests | |
on: | |
pull_request: | |
push: | |
branches: [ '*' ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.9" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r tests/requirements.txt | |
- uses: aws-actions/setup-sam@v2 | |
- run: sam build --use-container | |
- name: Start the project locally (and detach) | |
run: | | |
sam local start-lambda & | |
- name: Run integration tests with SAM | |
run: | | |
pytest tests/integration |