You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bug_fix: Run unit tests on main for at least one go version (#39638)
#### Description
While working on
#38270,
I accidently disabled all tests for the go version 1.24.
Here I'm fixing the problem and also updating comments to make the
conditionals easier to understand.
<!-- Issue number (e.g. #1234) or full URL to issue, if applicable. -->
#### Link to tracking issue
Fixes#39618
Signed-off-by: Arthur Silva Sens <[email protected]>
# JUnit tests are super long, so we only run them for one go version.
308
+
# This is used for automation that automatically creates issues for flaky tests that are
309
+
# merged to main, so we don't run them on every PR.
300
310
- name: Run Unit Tests With JUnit and Coverage
301
311
id: tests-with-junit
302
-
if: startsWith( matrix.go-version, '~1.23' ) && github.ref == 'refs/heads/main' && github.event_name == 'push'# only run junit/coverage on one version and only on main
if: startsWith( matrix.go-version, '~1.23' ) && github.ref == 'refs/heads/main' && github.event_name == 'push'# only upload artifact for one version and only on main
if: startsWith( matrix.go-version, '~1.23' ) && github.ref == 'refs/heads/main' && github.event_name == 'push'# only upload artifact for one version and only on main
0 commit comments