Skip to content

NickAkhmetov / HMP-235 Add support for text-only publication vignettes #1228

NickAkhmetov / HMP-235 Add support for text-only publication vignettes

NickAkhmetov / HMP-235 Add support for text-only publication vignettes #1228

Workflow file for this run

name: 🐍 Python CI
on:
push:
branches: [ main ]
pull_request: {}
jobs:
build:
# Available versions:
# https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version-file: '.python-version'
architecture: 'x64'
cache: 'pip'
cache-dependency-path: 'context/requirements*.txt'
- name: Install python main dependencies
run: pip install -r context/requirements.txt
- name: Install python dev dependencies
run: pip install -r context/requirements-dev.txt
- name: Run test script
run: etc/test/test-python.sh