diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a9b7263..76ee544 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,10 +30,6 @@ jobs: with: fetch-depth: 0 lfs: false - - - name: Install MDBTools OS dependency - run: | - sudo apt install -y mdbtools tree # Due to limited LFS bandwidth, it is preferable to download # test files from the last release. @@ -47,18 +43,21 @@ jobs: latest: true tarBall: true zipBall: false - out-file-path: ${{ GITHUB_WORKSPACE }}/last-release + out-file-path: /home/runner/work/last-release extract: true - name: Copy test files from static downloaded release run: | - tree - cp -r ${{ GITHUB_WORKSPACE }}/last-release/*/tests/testdata tests + cp -r /home/runner/work/last-release/*/tests/testdata tests - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + - name: Install MDBTools OS dependency + run: | + sudo apt install -y mdbtools + # tox-gh workflow following instructions at https://github.com/tox-dev/tox-gh - name: Install tox run: python -m pip install tox-gh