Skip to content

UPDATE: add dvc exp tracking components #3

UPDATE: add dvc exp tracking components

UPDATE: add dvc exp tracking components #3

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install latest version of Poetry
run: |
curl -sSL https://install.python-poetry.org | python -
- name: Add Poetry to $PATH
run: |
echo "${HOME}/.poetry/bin" >> $GITHUB_PATH
- name: Get Poetry version
run: poetry --version
- name: Check pyproject.toml validity
run: poetry check --no-interaction
- name: Install deps
run: |
make install
- name: Lint with black & ruff
run: |
poetry run make linting