Skip to content

Add sample output and how to invoke CLI #8

Add sample output and how to invoke CLI

Add sample output and how to invoke CLI #8

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
- test-me-*
tags:
- '*'
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- uses: pre-commit/[email protected]
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: python -m pip install tox
- name: Run unit tests
run: tox run -e coverage
- name: Run integration tests
run: tox run -e integration-tests