just do normal logs #4
Workflow file for this run
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: Install Local Version of Opik | |
on: | |
push: | |
branches: | |
- andrei/initial_installer_test | |
jobs: | |
test_installation: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: sdks/python/ | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.ref }} | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Install Opik | |
run: pip install . | |
- name: Install Opik Server | |
run: opik server --debug install --opik-version=0.1.7 | |
# - name: Get Installation Log artifacts | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: install-log | |
# path: install-log.txt | |