Skip to content

Commit 5cb4991

Browse files
Merge branch 'master' into updated-runner-contrubuting-guide
2 parents 1b7d436 + 7e41dec commit 5cb4991

114 files changed

Lines changed: 2307 additions & 1050 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ jobs:
164164
strategy:
165165
matrix:
166166
include:
167-
- { goos: "linux", goarch: "amd64", runson: "ubuntu-latest" }
167+
- { goos: "linux", goarch: "amd64" }
168+
- { goos: "linux", goarch: "arm64" }
168169
runs-on: ubuntu-latest
169170
steps:
170171
- uses: actions/checkout@v4
@@ -177,7 +178,6 @@ jobs:
177178
env:
178179
GOOS: ${{ matrix.goos }}
179180
GOARCH: ${{ matrix.goarch }}
180-
ACTIONSOS: ${{ matrix.runson }}
181181
CGO_ENABLED: 0
182182
run: |
183183
VERSION=$((${{ github.run_number }} + ${{ env.BUILD_INCREMENT }}))

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ jobs:
118118
strategy:
119119
matrix:
120120
include:
121-
- { goos: "linux", goarch: "amd64", runson: "ubuntu-latest" }
121+
- { goos: "linux", goarch: "amd64" }
122+
- { goos: "linux", goarch: "arm64" }
122123
runs-on: ubuntu-latest
123124
steps:
124125
- uses: actions/checkout@v4
@@ -131,7 +132,6 @@ jobs:
131132
env:
132133
GOOS: ${{ matrix.goos }}
133134
GOARCH: ${{ matrix.goarch }}
134-
ACTIONSOS: ${{ matrix.runson }}
135135
CGO_ENABLED: 0
136136
run: |
137137
VERSION=${GITHUB_REF#refs/tags/}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,6 @@ build/
2121
.fleet
2222
.env
2323
.envrc
24+
.vscode
2425
.aider*
2526
uv.lock

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/astral-sh/ruff-pre-commit
3-
rev: v0.5.3 # Should match requirements_dev.txt
3+
rev: v0.11.6 # Should match pyproject.toml
44
hooks:
55
- id: ruff
66
name: ruff common

docs/assets/stylesheets/extra.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1626,6 +1626,7 @@ html .md-footer-meta.md-typeset a:is(:focus,:hover) {
16261626
padding: 0.4em 1.5em;
16271627
font-size: 17px;
16281628
border-radius: 3px;
1629+
white-space: nowrap;
16291630
}
16301631

16311632
/*[data-md-color-primary=white] .md-button:hover{

0 commit comments

Comments
 (0)