Add initial boilerplate #1072
This file contains hidden or 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, workflow_dispatch] | |
jobs: | |
run-test-suite: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python-version: [3.9] | |
splunk-version: [9.4, latest] | |
include: | |
# Oldest possible configuration | |
# Last Ubuntu version with Python 3.7 binaries available | |
- os: ubuntu-22.04 | |
python-version: 3.7 | |
splunk-version: 9.1 | |
# Latest possible configuration | |
- os: ubuntu-latest | |
python-version: 3.13 | |
splunk-version: latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 | |
- name: Launch Splunk Docker instance | |
run: SPLUNK_VERSION=${{ matrix.splunk-version }} docker compose up -d | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: (Python 3.7) Install dependencies | |
if: ${{ matrix.python-version == '3.7' }} | |
run: python -m pip install python-dotenv pytest | |
- name: (Python >= 3.9) Install dependencies | |
if: ${{ matrix.python-version != '3.7' }} | |
run: python -m pip install . --group test | |
- name: Run entire test suite | |
run: python -m pytest ./tests |