Skip to content

df server config rename for compat; add terminal server config secs #21

df server config rename for compat; add terminal server config secs

df server config rename for compat; add terminal server config secs #21

Workflow file for this run

name: CI
on:
pull_request:
push:
paths-ignore:
- '**.md'
- 'doc/*'
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10']
steps:
- name: Checkout reposistory
uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Prepare tests
run: 'make info deps'
- name: Run tests
run: 'make test'