Skip to content

update test github workflow #1

update test github workflow

update test github workflow #1

Workflow file for this run

name: Setup Python Testing Environment

Check failure on line 1 in .github/workflows/setup-python.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/setup-python.yml

Invalid workflow file

(Line: 3, Col: 1): Unexpected value 'inputs', (Line: 6, Col: 1): Unexpected value 'runs', (Line: 1, Col: 1): Required property is missing: jobs
description: Sets up Python and dependencies for tests
inputs:
python-version:
required: true
runs:
using: composite
steps:
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
- name: Setup Python
uses: actions/setup-python@9322b3ca74000aeb2c01eb777b646334015ddd72
with:
python-version: ${{ inputs.python-version }}
- name: Install dependencies
run: pip install tox
shell: bash