Skip to content

Write to stdout instead of a file #12

Write to stdout instead of a file

Write to stdout instead of a file #12

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