Skip to content

Adding syslog as a target #4

Adding syslog as a target

Adding syslog as a target #4

Workflow file for this run

---
name: Integration
on:
pull_request:
push:
paths-ignore:
- '*.md'
- 'docs/**'
branches:
- main
- master
- '[0-9].[0-9]'
jobs:
integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: install poetry and dependencies
run: |
pip install poetry
poetry install
poetry build
- name: run tests
run: |
poetry run pytest