diff --git a/.bazelversion b/.bazelversion index 21c8c7b..a8a1887 100644 --- a/.bazelversion +++ b/.bazelversion @@ -1 +1 @@ -7.1.1 +7.1.2 diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..9b1aeae --- /dev/null +++ b/.editorconfig @@ -0,0 +1,6 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true + diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2c1af85..9da7aac 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,10 +20,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - uses: greut/eclint-action@v0 - uses: jidicula/clang-format-action@v4.11.0 with: { clang-format-version: "18" } test-windows: + if: github.event_name == 'merge_group' runs-on: windows-latest steps: - uses: actions/cache@v4 @@ -39,6 +41,7 @@ jobs: working-directory: test test-linux: + if: github.event_name == 'merge_group' runs-on: ubuntu-latest steps: - uses: actions/cache@v4 diff --git a/cog.toml b/cog.toml index 9cbba6c..c7d273c 100644 --- a/cog.toml +++ b/cog.toml @@ -1,6 +1,7 @@ pre_bump_hooks = [ # Ecsact pre 1.0.0 the 0.X.0 is our 'major' version "buildozer 'set version {{version}}' 'set compatibility_level {{version.minor}}' //MODULE.bazel:%module", + "bazel mod tidy", ] post_bump_hooks = [ diff --git a/typos.toml b/typos.toml index bf27f28..3ffc3da 100644 --- a/typos.toml +++ b/typos.toml @@ -1,2 +1,5 @@ [files] extend-exclude = ["CHANGELOG.md"] + +[default] +extend-ignore-re = ["(?Rm)^.*(#|//)\\s*typos:disable-line$"]