diff --git a/.github/workflows/abc_atlas_access_ci.yaml b/.github/workflows/abc_atlas_access_ci.yaml index 21aeecb..de1c9c2 100644 --- a/.github/workflows/abc_atlas_access_ci.yaml +++ b/.github/workflows/abc_atlas_access_ci.yaml @@ -5,21 +5,22 @@ on: - master pull_request: jobs: - name: ${{ matrix.python-version }}, ${{ matrix.os }} - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ "macos-latest", "windows-latest", "ubuntu-latest" ] - python-version: [ "3.8", "3.9", "3.10", "3.11" ] - fail-fast: false - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - name: Install - run: | - python -m pip install --upgrade pip - pip install . - - name: Test - run: pytest tests + test: + name: ${{ matrix.python-version }}, ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ "macos-latest", "windows-latest", "ubuntu-latest" ] + python-version: [ "3.8", "3.9", "3.10", "3.11" ] + fail-fast: false + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + - name: Install + run: | + python -m pip install --upgrade pip + pip install . + - name: Test + run: pytest tests