Skip to content

feat: use sha for actions (#1825) #92

feat: use sha for actions (#1825)

feat: use sha for actions (#1825) #92

Workflow file for this run

name: "Continuous Build (Python)"
on:
push:
paths:
- 'python/**'
- '.github/workflows/ci-python.yml'
branches:
- main
pull_request:
paths:
- 'python/**'
- '.github/workflows/ci-python.yml'
branches:
- main
env:
AWS_REGION: us-east-1
# Copied this CORE_REPO_SHA from
# https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/.github/workflows/test.yml#L9
CORE_REPO_SHA: v1.19.0
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# If you add a python version here, please make sure that the collector/Makefile publish and publish-layer targets
# get updated as well
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- name: Checkout this repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Python for OTel Python SDK
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: ${{ matrix.python }}
- name: Install tox testing package
working-directory: python/src
run: |
pip install tox
tox
- name: Set up Go for ADOT Collector
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version: '^1.20.8'
- name: Build Python Layer which includes ADOT Collector
working-directory: python/src
run: ./run.sh -b