Fix variable because it's breaking integration (#97) #327
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: Tests | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
types: [opened, synchronize, reopened, labeled, unlabeled] | |
branches: | |
- 'main' | |
paths: | |
- 'src/**' | |
- 'tests/**' | |
- '.github/workflows/tests.yaml' | |
permissions: # These are required to log into ECR, remove when no longer required | |
id-token: write | |
contents: read | |
jobs: | |
lint_python_packages: | |
name: Lint and test | |
runs-on: ubuntu-latest-xlarge | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
# TODO: Needed for compose, remove when compose is migrated to use public images | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: ${{ secrets.AWS_ROLE_ARN }} | |
role-session-name: github-actions-platform-api | |
aws-region: ${{ vars.AWS_REGION }} | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
cache: 'pip' | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: 2.0.0 | |
virtualenvs-create: true | |
virtualenvs-in-project: true | |
- name: Build and lint tensorlake | |
run: make build && make check | |
# TODO: Needed for compose, remove when compose is migrated to use public images | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v2 | |
- uses: hoverkraft-tech/[email protected] | |
with: | |
compose-file: "./tests/compose.yaml" | |
- name: Run tests | |
env: | |
INDEXIFY_URL: http://127.0.0.1:8900 | |
run: make test |