Skip to content

Merge pull request #52 from UBC-MDS/feature/hotfix_quarto #29

Merge pull request #52 from UBC-MDS/feature/hotfix_quarto

Merge pull request #52 from UBC-MDS/feature/hotfix_quarto #29

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