Skip to content

fix: fix clone in group_tensors_by_shape_and_dtype (#98) #25

fix: fix clone in group_tensors_by_shape_and_dtype (#98)

fix: fix clone in group_tensors_by_shape_and_dtype (#98) #25

Workflow file for this run

# Licensed to the Awex developers under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
name: Awex CI
on:
push:
branches:
- main
- "releases/**"
- "deploy/**"
- "test*"
tags:
- v*
pull_request:
paths-ignore:
- "LICENSE"
- ".vscode/**"
- ".gitignore"
- "licenses/**"
- "DISCLAIMER"
- "NOTICE"
types: ["opened", "reopened", "synchronize"]
jobs:
test:
name: Python CI
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.8, 3.12]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
lint:
name: Code Style Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
# - name: Check License Header
# uses: korandoru/hawkeye@v3
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Check code style
run: bash ci/format.sh