Skip to content

implement fetch_settings to project_preferences class #142

implement fetch_settings to project_preferences class

implement fetch_settings to project_preferences class #142

Workflow file for this run

name: Run tests
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip' # caching pip dependencies
cache-dependency-path: setup.py
- name: Install dependencies
run: |
pip install -U pip
pip install -U .[testing,docs]
- name: Run tests
run: python -m unittest discover