Update pre-commit hooks (#3713) #3
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 | |
name: CI | |
on: | |
# Run this workflow on every push to the master branch, or a stable branch. | |
push: | |
branches: | |
- master | |
- "stable/**" | |
pull_request: | |
branches: | |
- master | |
- 'stable/**' | |
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 | |
collect_coverage: true | |
group: ci |