Skip to content

Merge pull request #49 from UBC-MDS/M3-Yuexiang-documentationpage #26

Merge pull request #49 from UBC-MDS/M3-Yuexiang-documentationpage

Merge pull request #49 from UBC-MDS/M3-Yuexiang-documentationpage #26

Workflow file for this run

# GitHub Actions workflow for ridge_remake
name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[tests]"
- name: Check style and run tests
run: |
ruff check .
pytest