Skip to content

Fix formatting.

Fix formatting. #2

name: ci/ab_atlas_access
on:
push:
branches:
- master
pull_request:
jobs:
name: ${{ matrix.python-version }}, ${{ matrix.os }}

Check failure on line 8 in .github/workflows/abc_atlas_access_ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/abc_atlas_access_ci.yaml

Invalid workflow file

You have an error in your yaml syntax on line 8
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