-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #173 from jeromekelleher/more-platforms
Platform and distribution CI
- Loading branch information
Showing
6 changed files
with
50 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,10 +17,19 @@ jobs: | |
- uses: pre-commit/[email protected] | ||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
# Use macos-13 because pip binary packages for ARM aren't | ||
# available for many dependencies | ||
os: [macos-13, ubuntu-latest] | ||
python-version: ["3.9", "3.10", "3.11"] | ||
exclude: | ||
# Just run macos tests on one Python version | ||
- os: macos-13 | ||
python-version: "3.9" | ||
- os: macos-13 | ||
python-version: "3.10" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
|
@@ -32,3 +41,30 @@ jobs: | |
python -m pip install --upgrade pip | ||
python -m pip install '.[dev]' | ||
- run: pytest | ||
|
||
packaging: | ||
name: Packaging | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.11' | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install build twine validate-pyproject[all] | ||
- name: Check and install package | ||
run: | | ||
validate-pyproject pyproject.toml | ||
python -m build | ||
python -m twine check --strict dist/* | ||
python -m pip install dist/*.whl | ||
- name: Check vcf2zarr CLI | ||
run: | | ||
vcf2zarr --help | ||
python -m bio2zarr vcf2zarr --help | ||
- name: Check vcfpartition CLI | ||
run: | | ||
vcfpartition --help | ||
python -m bio2zarr vcfpartition --help |
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
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
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
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
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