Skip to content

⬆️ Bump opentelemetry-semantic-conventions from 0.54b0 to 0.54b1 #825

⬆️ Bump opentelemetry-semantic-conventions from 0.54b0 to 0.54b1

⬆️ Bump opentelemetry-semantic-conventions from 0.54b0 to 0.54b1 #825

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.0
with:
python-version: ${{ matrix.python-version }}
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.6.1
- name: Install dependencies
run: |
poetry install
pip install pytest
pip install openai
- name: Run style checks
run: |
make check-codestyle
- name: Creadentials search in source code - TruffleHog OSS
uses: trufflesecurity/trufflehog@v3.69.0
- name: Run tests
run: |
make test