Skip to content

feat(#31): updated first column width #16

feat(#31): updated first column width

feat(#31): updated first column width #16

Workflow file for this run

name: Python Unittest ChurchToolsAPI
on: [ push, pull_request ]
env:
CT_TOKEN: ${{ secrets.CT_TOKEN }}
CT_USERS: ${{ secrets.CT_USERS }}
CT_DOMAIN: ${{ vars.CT_DOMAIN }}
TZ: Europe/Berlin
jobs:
list-domain:
runs-on: ubuntu-latest
environment: ev_kirche_baiersbronn
steps:
- name: show CT_DOMAIN for this job
run: echo $CT_DOMAIN
test:
runs-on: ubuntu-latest
environment: ev_kirche_baiersbronn
steps:
- uses: actions/[email protected]
- name: Set up Python
uses: actions/[email protected]
with:
python-version: '3.x'
- name: Install Poetry
run: |
pip install poetry
poetry config virtualenvs.create false # Skip creating a virtual environment
env:
POETRY_HOME: ${{ github.workspace }}/.poetry
- name: Install project dependencies
run: |
poetry install
env:
POETRY_HOME: ${{ github.workspace }}/.poetry
- name: Run pytest
run: |
pytest tests/
env:
POETRY_HOME: ${{ github.workspace }}/.poetry