Skip to content

Allow all Python 3 versions ≥ 3.7 to install Promptsource #2643

Allow all Python 3 versions ≥ 3.7 to install Promptsource

Allow all Python 3 versions ≥ 3.7 to install Promptsource #2643

Workflow file for this run

name: check_templates
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: '3.7'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Check templates
run: |
pytest test/test_templates.py