Skip to content

Improvement: Mention that the hypernode-systemctl tool can be used to… #1072

Improvement: Mention that the hypernode-systemctl tool can be used to…

Improvement: Mention that the hypernode-systemctl tool can be used to… #1072

Workflow file for this run

name: Run tests
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.12']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements/base.txt
pip install tox tox-gh-actions
- name: Check markdown format
run: mdformat --check docs/
- name: Test with tox
run: tox