configuration: add logging section & ad log_level to configuration_opts #97
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Prepare test environment | |
env: | |
PHPIPAM_URL: ${{ secrets.PHPIPAM_URL }} | |
PHPIPAM_APPID: ${{ secrets.PHPIPAM_APPID }} | |
PHPIPAM_USERNAME: ${{ secrets.PHPIPAM_USERNAME }} | |
PHPIPAM_PASSWORD: ${{ secrets.PHPIPAM_PASSWORD }} | |
run: | | |
python -m pip install --upgrade pip | |
make test-setup | |
- name: Run all tests | |
run: | |
make test-all |