From 7966e683ba6d8793ce0d837cc18cc480724c2535 Mon Sep 17 00:00:00 2001 From: Andreas Grapentin Date: Sun, 3 Sep 2023 08:32:05 +0200 Subject: [PATCH] updated pytest workflow to pull lfs files --- .github/workflows/pytest.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 695bcd2..54fa463 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -10,10 +10,15 @@ jobs: python-version: ["3.10"] steps: - uses: actions/checkout@v3 + with: + lfs: true - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} + - name: checkout lfs objects + run: | + git lfs pull - name: Install dependencies run: | python -m pip install --upgrade pip