-
Notifications
You must be signed in to change notification settings - Fork 5
40 lines (33 loc) · 942 Bytes
/
pet-jax.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: PET-JAX tests
on:
push:
branches: [main]
pull_request:
# Check all PR
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-22.04
python-version: "3.12"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install tox
- name: Install JAX
# JAX does not work as a dependency; it needs to be installed separately
run: pip install jax[cpu]
- name: run PET-JAX tests
run: tox -e pet-jax-tests
env:
# Use the CPU only version of torch when building/running the code
PIP_EXTRA_INDEX_URL: https://download.pytorch.org/whl/cpu
- name: Upload codecoverage
uses: codecov/codecov-action@v4
with:
files: ./tests/coverage.xml