Skip to content

Add weights to daily model #38

Add weights to daily model

Add weights to daily model #38

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
types:
- opened
- synchronize
- reopened
schedule:
# run monthly to monitor dependency updates
- cron: "0 0 1 * *"
jobs:
build:
strategy:
fail-fast: false
matrix:
python: ["3.9", "3.10", "3.11", "3.12"]
# macos-13 is x86_64, macos-14/macos-latest is ARM
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }} on ${{ matrix.os }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: pip install tox
- name: Run tox
run: tox -e ${{ matrix.python }}