Skip to content

luarss started CI

luarss started CI #85

Workflow file for this run

name: ORAssistant CI
run-name: ${{ github.actor }} started CI
on:
push:
branches:
- master
pull_request:
jobs:
build-backend-docker:
runs-on: self-hosted
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup prereqs
run: make init-dev
- name: Run formatting checks
run: |
make format
make check
- name: Populate environment variables
run: |
cp backend/.env.example backend/.env
sed -i 's|{{GOOGLE_API_KEY}}|${{ secrets.GOOGLE_API_KEY }}|g' backend/.env
sed -i 's|{{PATH_TO_GOOGLE_APPLICATION_CREDENTIALS}}|src/secret.json|g' backend/.env
cp ${{ secrets.PATH_TO_GOOGLE_APPLICATION_CREDENTIALS }} backend/src
- name: Build Docker image
run: |
make docker
- name: Run LLM CI
working-directory: evaluation
run: |
make llm-tests
- name: Create commit comment
working-directory: evaluation
uses: peter-evans/commit-comment@v3

Check failure on line 37 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / ORAssistant CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 37, Col: 7): Unexpected value 'uses' .github/workflows/ci.yaml (Line: 38, Col: 7): Unexpected value 'with'
with:
token: ${{ secrets.GH_PATH }}
body-path: llm-tests-output.txt
- name: Teardown
if: always()
run: |
docker compose down --remove-orphans