Test experimental tool versions #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright cocotb contributors | |
# Licensed under the Revised BSD License, see LICENSE for details. | |
# SPDX-License-Identifier: BSD-3-Clause | |
# A workflow where the tool is the moving target, or the tool is known to be | |
# not fully supported by cocotb, but we still want to see how its support | |
# evolves over time. | |
name: Test experimental tool versions | |
on: | |
# Run every Monday at 2am (UTC). | |
schedule: | |
- cron: '0 2 * * 1' | |
# Allow triggering a CI run from the web UI. | |
workflow_dispatch: | |
jobs: | |
test_dev: | |
name: Regression Tests | |
uses: ./.github/workflows/regression-tests.yml | |
with: | |
nox_session_test_sim: dev_test_sim | |
nox_session_test_nosim: dev_test_nosim | |
group: experimental |