Skip to content

Improve Github Action #13

Improve Github Action

Improve Github Action #13

Workflow file for this run

name: Set up environment with all packages
on:
pull_request:
workflow_dispatch: # To trigger manually
schedule:
- cron: '4 6 8/16 * *' # On the 8th and 24th of each month at 4:06
jobs:
setup_environment:
continue-on-error: true
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10"]
runs-on: ${{ matrix.os }}
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 dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt