I have an instrumented test class. Its test cases are in JUnit 5 (with the help of a Gradle plugin per this answer). How can I disable this test class from being run on CI (specifically, on GitHub Actions)?
I cannot use JUnit 5 annotations like @DisabledIfEnvironmentVariable
because Android instrumented tests run on the device/emulator and cannot see the Host OS environment variables.