Skip to content

Where are the files? #10

Where are the files?

Where are the files? #10

Workflow file for this run

name: Build & Test
on: [push]
# release:
# types: [published]
jobs:
build-api:
runs-on: ubuntu-latest
outputs:
imagename: ${{ steps.image.name }}
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@main
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: 'Build API image'
id: image
run: |
echo "name=ghcr.io/${GITHUB_REPOSITORY,,}/api:${GITHUB_REF_NAME,,}" >> $GITHUB_OUTPUT
# build-ui:
# runs-on: ubuntu-latest
# steps:
# - name: 'Checkout GitHub Action'
# uses: actions/checkout@main
# - name: 'Login to GitHub Container Registry'
# uses: docker/login-action@v3
# with:
# registry: ghcr.io
# username: ${{github.actor}}
# password: ${{secrets.GITHUB_TOKEN}}
# - name: 'Build UI image'
# run: |
# docker build frontend/ \
# --tag ghcr.io/${GITHUB_REPOSITORY,,}/ui:${GITHUB_REF_NAME,,} \
# --tag ghcr.io/${GITHUB_REPOSITORY,,}/ui:latest
# docker push ghcr.io/${GITHUB_REPOSITORY,,}/ui:${GITHUB_REF_NAME,,}
# docker push ghcr.io/${GITHUB_REPOSITORY,,}/ui:latest
test:
needs: build-api
runs-on: ubuntu-latest
container:
image: ${{ needs.build-api.outputs.imagename }}
services:
postgres:
image: postgres:latest
env:
POSTGRES_DB: test_aimaas
POSTGRES_USER: aimaas
POSTGRES_PASSWORD: password
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
pip install -r backend/requirements_test.txt
- name: Test
run: |
find /opt/aimaas -ls
pytest /opt/aimaas/tests/
env:
PG_USER: aimaas
PG_PASSWORD: password
PG_HOST: localhost
PG_PORT: 5432
PG_DB: aimaas