Skip to content

Change DirectRunner for FnApiRunner in tfgnn_sampler #192

Change DirectRunner for FnApiRunner in tfgnn_sampler

Change DirectRunner for FnApiRunner in tfgnn_sampler #192

Workflow file for this run

# Copyright 2026 The TensorFlow GNN Authors. All Rights Reserved.
#
# Licensed 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: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: '0 8 * * *' # Run daily at 08:00 UTC
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
# Don't cancel in-progress jobs for main branches.
cancel-in-progress: ${{ github.ref != 'main' }}
jobs:
build-and-test-oldest:
name: build-and-test-oldest
uses: ./.github/workflows/build-reusable.yml
with:
job_name: 'build-and-test-oldest'
python_version: '3.10'
tf_version_spec: '2.17.*'
# Disable Vizier tests by default since vizier is now an extra dependency (b/394062744).
tag_filters: ',-vizier'
build-and-test-newest-stable:
name: build-and-test-newest-stable
uses: ./.github/workflows/build-reusable.yml
with:
job_name: 'build-and-test-newest-stable'
python_version: '3.13'
tf_version_spec: '2.21.*'
# Disable Vizier tests by default since vizier is now an extra dependency (b/394062744).
tag_filters: ',-vizier'
build-and-test-nightly:
name: build-and-test-nightly
uses: ./.github/workflows/build-reusable.yml
with:
job_name: 'build-and-test-nightly'
python_version: '3.13'
test_tf_nightly: true
tag_filters: ''