Skip to content

Add new option to CLI to run job, poll for job status and output of job #116

Add new option to CLI to run job, poll for job status and output of job

Add new option to CLI to run job, poll for job status and output of job #116

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python application
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
merge_group:
branches: [ master ]
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Linting
run: |
pip install pre-commit
pre-commit run --all-files