Skip to content

Merge pull request #320 from bohning/x64_arm64 #809

Merge pull request #320 from bohning/x64_arm64

Merge pull request #320 from bohning/x64_arm64 #809

Workflow file for this run

name: tox
on:
push:
branches:
- "main"
pull_request:
jobs:
tox:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v3
- name: Install Linux specific dependencies for dbus-python
run: |
sudo apt-get update
sudo apt-get install -y gcc python3-dev libdbus-1-dev
pkg-config --cflags --libs dbus-1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tox and poetry
run: python -m pip install tox poetry
- name: Test with tox
run: tox