Skip to content

Install

Install #952

Workflow file for this run

---
name: Install
on: # yamllint disable-line rule:truthy
schedule:
- cron: 21 08 * * *
workflow_dispatch:
jobs:
Install:
runs-on: ubuntu-latest
strategy:
max-parallel: 3
matrix:
python-version: [3.7, 3.8, 3.9, '3.10']
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install the program
run: pip install repository-orm
- name: Test the program works
run: |-
python -c "import repository_orm.version;
print(repository_orm.version.version_info())"