Skip to content

Use python >= 3.9 generic type annotations. Add support for 3.11, dro… #191

Use python >= 3.9 generic type annotations. Add support for 3.11, dro…

Use python >= 3.9 generic type annotations. Add support for 3.11, dro… #191

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# Copied from github.com/google/jax-md and github.com/google/jax
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: linux
on:
push:
branches:
- main
- 'test_*'
pull_request:
branches:
- main
jobs:
Linux:
timeout-minutes: 120
strategy:
matrix:
python-version: [3.8, 3.9, '3.10'] # 3 == 3.11 currently.
JAX_ENABLE_X64: [0, 1]
runs-on: ubuntu-latest
steps:
- name: Cancel previous
uses: styfle/cancel-workflow-action@0.11.0
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v3.3.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.5.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install numpy jaxlib --upgrade
pip install -e .
pip install -e .[testing]
pip install pytest
pip install pytest-xdist
pip install pytest-cov
- name: Test with pytest and generate coverage report (Ubuntu)
run: |
JAX_ENABLE_X64=${{ matrix.JAX_ENABLE_X64 }} PYTHONHASHSEED=0 pytest -n auto --cov=neural_tangents --cov-report=xml --cov-report=term
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3.1.1
with:
file: ./coverage.xml
# The below step just reports the success or failure of tests as a "commit status".
# This is needed for copybara integration.
- name: Report success or failure as github status
if: always()
shell: bash
run: |
status="${{ job.status }}"
lowercase_status=$(echo $status | tr '[:upper:]' '[:lower:]')
curl -sS --request POST \
--url https://api.github.com/repos/${{ github.repository }}/statuses/${{ github.sha }} \
--header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \
--header 'content-type: application/json' \
--data '{
"state": "'$lowercase_status'",
"target_url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}",
"description": "'$status'",
"context": "github-actions/linux"
}'