Skip to content

SDK-23: remove python 3.7 usage for latest ubuntu #768

SDK-23: remove python 3.7 usage for latest ubuntu

SDK-23: remove python 3.7 usage for latest ubuntu #768

Workflow file for this run

name: Python CI
on:
[ push, pull_request, workflow_dispatch ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- python: "3.7"
os: ubuntu-22.04
- python: "3.9"
os: ubuntu-latest
- python: "3.13"
os: ubuntu-latest
splunk-version:
- "8.1"
- "8.2"
- "latest"
fail-fast: false

Check failure on line 23 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Python CI

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 23, Col: 20): Unexpected value '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