Skip to content

Record scrubbed VLM vs current pipeline comparison (rField 0.781 vs 0… #182

Record scrubbed VLM vs current pipeline comparison (rField 0.781 vs 0…

Record scrubbed VLM vs current pipeline comparison (rField 0.781 vs 0… #182

Workflow file for this run

name: ci
on: [push]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: Gr1N/setup-poetry@v8
- name: Change executable permissions for files in the bin folder
run: chmod +x ./bin/*
- name: Check dependencies
run: make doctor
- uses: actions/cache@v3
with:
path: .venv
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
run: make install
# - name: Check code
# run: make check
- name: Test code
run: make test