Merge remote-tracking branch 'origin/next' #49
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
# Simple workflow to run unit tests. | |
name: Unit Tests | |
on: | |
push: | |
paths: | |
- ".github/workflows/unittest.yaml" | |
- "json_logging/**" | |
jobs: | |
unittest-json-logging: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout out code | |
uses: actions/checkout@v2 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Run unit tests (json_logging) | |
run: |- | |
cd json_logging/ | |
python3 -m pip install . | |
python3 -m unittest discover -v tests/ |