Skip to content

Cross-OS Install (Source) #239

Cross-OS Install (Source)

Cross-OS Install (Source) #239

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Cross-OS Install (Source)
on:
schedule:
- cron: "0 0 * * 1,4"
workflow_dispatch:
jobs:
install-source:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.10']
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: |
pip install --upgrade pip
pip install --upgrade tox tox-gh-actions
- name: Install hover
run: |
tox -e install