|
1 | 1 | name: Full Tests |
2 | 2 |
|
3 | 3 | on: |
4 | | - push: |
5 | | - branches: |
6 | | - - main |
7 | | - pull_request: |
8 | | - branches: |
9 | | - - main |
| 4 | + # push: |
| 5 | + # branches: |
| 6 | + # - main |
| 7 | + # pull_request: |
| 8 | + # branches-ignore: |
| 9 | + # - main |
10 | 10 | workflow_dispatch: |
11 | 11 |
|
12 | 12 | jobs: |
13 | 13 | build: |
14 | | - runs-on: ubuntu-20.04 |
| 14 | + runs-on: ubuntu-24.04 |
15 | 15 |
|
16 | 16 | if: startsWith(github.ref, 'refs/tags/v') != true |
17 | 17 |
|
18 | 18 | steps: |
19 | 19 | - uses: actions/checkout@v4 |
20 | | - - name: Set up Python 3.6 |
| 20 | + - name: Set up Python 3.8 |
21 | 21 | uses: actions/setup-python@v4 |
22 | 22 | with: |
23 | | - python-version: 3.6 |
| 23 | + python-version: 3.8 |
24 | 24 |
|
25 | 25 | - name: Install dependencies |
26 | 26 | run: pip install wheel setuptools |
|
40 | 40 | runs-on: ${{ matrix.os }} |
41 | 41 | strategy: |
42 | 42 | matrix: |
43 | | - os: [ windows-2019, ubuntu-20.04, macos-13 ] |
44 | | - python-version: [ 3.7, 3.8, 3.9 ] |
| 43 | + os: [ windows-latest, ubuntu-latest, macos-latest ] |
| 44 | + python-version: [ 3.8, 3.9] |
45 | 45 | tf-version: [2.7.0, 2.8.0, 2.9.0] |
46 | 46 |
|
47 | 47 | steps: |
|
71 | 71 | runs-on: ${{ matrix.os }} |
72 | 72 | strategy: |
73 | 73 | matrix: |
74 | | - os: [ windows-2019, ubuntu-20.04, macos-13 ] |
75 | | - python-version: [ 3.7, 3.8, 3.9 ] |
| 74 | + os: [ windows-latest, ubuntu-latest, macos-latest ] |
| 75 | + python-version: [ 3.8, 3.9 ] |
76 | 76 | pytorch-version: [1.8.0, 1.9.0, 1.10.0, 1.11.0, 1.12.0, 1.13.0] |
77 | 77 |
|
78 | 78 | steps: |
|
0 commit comments