Skip to content

Commit

Permalink
Correct the parameter names.
Browse files Browse the repository at this point in the history
Signed-off-by: Jay Zhang <[email protected]>
  • Loading branch information
fatcat-z committed Jun 4, 2024
1 parent cd8c11c commit 3e224f2
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,25 +20,22 @@ jobs:
setup:
strategy:
matrix:
tf_version: ['2.10.0', '2.11.0', '2.13.0']
tf_version: ['2.10', '2.11', '2.13']
python_version: ['3.8', '3.9', '3.10']
permissions:
actions: write
checks: write

runs-on: ubuntu-latest

steps:
- name: Set up Python
- name: Set up Python (${{ matrix.python_version }})
uses: actions/setup-python@v2
with:
# python-version: ${{ inputs.py_version }}
python-version: ${{ matrix.python_version }}

- name: Checkout code (${{ matrix.python_version }}-${{ matrix.tf_version }})
- name: Checkout code
uses: actions/checkout@v4

- name: Install dependencies
- name: Install dependencies (tf ${{ matrix.tf_version }})
run: |
# pip install pytest pytest-cov pytest-runner coverage graphviz requests pyyaml pillow pandas parameterized sympy coloredlogs flatbuffers timeout-decorator
pip install numpy
Expand Down

0 comments on commit 3e224f2

Please sign in to comment.