diff --git a/.bazelversion b/.bazelversion index ade6522..f22d756 100644 --- a/.bazelversion +++ b/.bazelversion @@ -1 +1 @@ -5.4.1 +6.5.0 diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index b5f3f2b..1394fbb 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -13,12 +13,7 @@ jobs: steps: # Checks-out the repository under $GITHUB_WORKSPACE, so the job can access it - uses: actions/checkout@v4 - - - name: Setup Bazel - uses: abhinavsingh/setup-bazel@v3 - with: - # Must match version in repo's .bazelversion file. - version: 5.4.1 - - name: Run tests + run: bazel test //... + - name: Run integration tests run: ./test.sh diff --git a/renovate.json b/renovate.json index 5db72dd..902d0ac 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,17 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "config:recommended" + ":dependencyDashboard", + ":semanticPrefixFixDepsChoreOthers", + "group:monorepos", + "group:recommended", + "replacements:all", + "workarounds:all" + ], + "packageRules": [ + { + "matchFiles": ["MODULE.bazel"], + "enabled": false + } ] } diff --git a/test/BUILD b/test/BUILD index ce2f22b..207ebbc 100644 --- a/test/BUILD +++ b/test/BUILD @@ -45,6 +45,7 @@ mypy_test( mypy_test( name = "broken_mypy_test", + tags = ["manual"], deps = [":broken_mypy_typings"], ) @@ -60,6 +61,7 @@ mypy_test( mypy_test( name = "broken_imported_mypy_test", + tags = ["manual"], deps = [":broken_imported_mypy_typings"], )