Skip to content

Add manual trigger for test install CI #1277

Add manual trigger for test install CI

Add manual trigger for test install CI #1277

name: Test PyPI install
on:
pull_request:
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 0 * * 3'
jobs:
test-installation:
name: Test PyPI install (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: [3.7, 3.8, 3.9]
steps:
- name: Setup python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install package from PyPI
run: |
pip install --upgrade pip
pip install openscm-units --pre
- name: Checkout repository (after installing)
uses: actions/checkout@v2
- name: Test installation
run: |
python scripts/test-install.py