diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0c19b3c4b..5ba8069c4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,7 +7,7 @@ on: jobs: test: - name: Build MDANSE and run tests on ${{ matrix.os }} + name: [${{ matrix.os }}-${{ matrix.python-version }}] Build MDANSE and run tests runs-on: ${{ matrix.os }} strategy: fail-fast: false @@ -28,9 +28,9 @@ jobs: run: python -m pip install pytest pytest-timeout - name: install MDANSE - run: (cd MDANSE && python -m pip install .) + working-directory: MDANSE + run: python -m pip install . - name: run unit tests - run: | - cd MDANSE/Tests/UnitTests - python -m pytest + working-directory: MDANSE/Tests/UnitTests + run: python -m pytest