Fix pipeline #737
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: Python CI | |
on: | |
[ push, pull_request, workflow_dispatch ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
splunk-version: | |
- "8.1" | |
- "8.2" | |
- "latest" | |
include: | |
- os: ubuntu-22.04 # Only for Python 3.7 | |
python: 3.7 | |
- os: ubuntu-22.04 | |
python: 3.7 | |
- os: ubuntu-22.04 | |
python: 3.7 | |
- os: ubuntu-latest # For newer Python versions | |
python: 3.9 | |
- os: ubuntu-latest | |
python: 3.9 | |
- os: ubuntu-latest | |
python: 3.9 | |
- os: ubuntu-latest | |
python: 3.13 | |
- os: ubuntu-latest | |
python: 3.13 | |
- os: ubuntu-latest | |
python: 3.13 | |
fail-fast: false | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Run docker compose | |
run: SPLUNK_VERSION=${{matrix.splunk-version}} docker compose up -d | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install tox | |
run: pip install tox | |
- name: Test Execution | |
run: tox -e py | |
fossa-scan: | |
uses: splunk/oss-scanning-public/.github/workflows/oss-scan.yml@main | |
secrets: inherit |