h5py indexing #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://docs.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions | |
# | |
# Contributors to the evolution of this form: | |
# | |
# sunqm | |
# fishjojo | |
# mjw99 | |
# yangcal | |
# maxscheurer | |
# | |
name: CI | |
#FIXME: workflow dependency not working on non-default branch? | |
#on: | |
# workflow_run: | |
# workflows: | |
# - Lint | |
# types: | |
# - completed | |
on: [push, pull_request] | |
jobs: | |
linux-build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04] | |
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install and Test | |
run: ./.github/workflows/run_ci.sh | |
- name: Upload to codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{secrets.CODECOV_TOKEN}} | |
macos-build: | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.7"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install and Test | |
run: ./.github/workflows/run_ci.sh | |
- name: Upload to codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{secrets.CODECOV_TOKEN}} |