Skip to content

Commit

Permalink
add logger matrix to testing (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
epsilon-0 committed Apr 30, 2024
1 parent 8ac6eed commit 91f0323
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,22 @@ jobs:
python-version:
- 3.11
- 3.12
logger:
- syslog-ng
- rsyslog
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install logger
run: |
sudo apt-get update
sudo apt-get install -y ${{ matrix.logger }}
- name: Setup python
id: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- name: Install python dependencies
run: |
pipx install pipenv
pipenv install --dev --python ${{ steps.setup-python.outputs.python-path }}
Expand Down

0 comments on commit 91f0323

Please sign in to comment.