Remove rc symlink [jsc#PED-266] #29
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: | |
branches: | |
- "master" | |
pull_request: | |
jobs: | |
format: | |
name: Ensure code is black formatted | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout source code | |
uses: actions/checkout@v2 | |
- name: set up Python | |
uses: actions/setup-python@v2 | |
- name: install dependencies | |
run: pip install --user poetry && poetry install | |
- name: run tests | |
run: poetry run black --check --diff *py | |
tests: | |
name: Test containers | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout source code | |
uses: actions/checkout@v2 | |
- name: set up Python | |
uses: actions/setup-python@v2 | |
- name: install dependencies | |
run: pip install --user poetry && poetry install | |
- name: run tests | |
run: poetry run pytest -vv -n $(nproc) |