-
Notifications
You must be signed in to change notification settings - Fork 3
42 lines (37 loc) · 1.11 KB
/
workflow.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
41
42
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python package
on:
push:
branches: [ "main" ]
jobs:
test_package:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest] # os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.10"] # python-version: ["3.9", "3.10", "3.11", "3.12"]
env:
JAX_ENABLE_X64: True
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/test
build_package:
runs-on: ubuntu-latest
env:
JAX_ENABLE_X64: True
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/build
publish_package:
needs: [build_package, test_package]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/publish
permissions:
id-token: write
environment:
name: pypi
url: https://pypi.org/p/ikpls