Skip to content

Commit

Permalink
Add initial testing script.
Browse files Browse the repository at this point in the history
  • Loading branch information
morriscb committed Jul 17, 2024
1 parent ac1646e commit 824c87d
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/abc_atlas_access_ci.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 824c87d

Please sign in to comment.