From 824c87dcb8845a5f16ea9d7e396426627e145063 Mon Sep 17 00:00:00 2001 From: Christopher Morrison Date: Wed, 17 Jul 2024 12:07:15 -0700 Subject: [PATCH] Add initial testing script. --- .github/workflows/abc_atlas_access_ci.yaml | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/abc_atlas_access_ci.yaml diff --git a/.github/workflows/abc_atlas_access_ci.yaml b/.github/workflows/abc_atlas_access_ci.yaml new file mode 100644 index 00000000..f9b75508 --- /dev/null +++ b/.github/workflows/abc_atlas_access_ci.yaml @@ -0,0 +1,25 @@ +name: ci/ab_atlas_access +on: + push: + branches: + - 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