Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit bd6e404

Browse files
authored
Merge branch 'develop' into erikj/better_return_type
2 parents ec7127f + 05eb55f commit bd6e404

Some content is hidden

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

44 files changed

+528
-453
lines changed

.ci/scripts/setup_complement_prerequisites.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ endblock
2121

2222
block Install Complement Dependencies
2323
sudo apt-get -qq update && sudo apt-get install -qqy libolm3 libolm-dev
24-
go get -v github.com/gotesttools/gotestfmt/v2/cmd/gotestfmt@latest
24+
go install -v github.com/gotesttools/gotestfmt/v2/cmd/gotestfmt@latest
2525
endblock
2626

2727
block Install custom gotestfmt template

.github/workflows/latest_deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ jobs:
208208

209209
steps:
210210
- uses: actions/checkout@v3
211-
- uses: JasonEtco/create-an-issue@5d9504915f79f9cc6d791934b8ef34f2353dd74d # v2.5.0, 2020-12-06
211+
- uses: JasonEtco/create-an-issue@77399b6110ef82b94c1c9f9f615acf9e604f7f56 # v2.5.0, 2020-12-06
212212
env:
213213
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
214214
with:

.github/workflows/tests.yml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,29 @@ jobs:
109109
components: clippy
110110
- uses: Swatinem/rust-cache@v2
111111

112-
- run: cargo clippy
112+
- run: cargo clippy -- -D warnings
113+
114+
# We also lint against a nightly rustc so that we can lint the benchmark
115+
# suite, which requires a nightly compiler.
116+
lint-clippy-nightly:
117+
runs-on: ubuntu-latest
118+
needs: changes
119+
if: ${{ needs.changes.outputs.rust == 'true' }}
120+
121+
steps:
122+
- uses: actions/checkout@v3
123+
124+
- name: Install Rust
125+
# There don't seem to be versioned releases of this action per se: for each rust
126+
# version there is a branch which gets constantly rebased on top of master.
127+
# We pin to a specific commit for paranoia's sake.
128+
uses: dtolnay/rust-toolchain@e645b0cf01249a964ec099494d38d2da0f0b349f
129+
with:
130+
toolchain: nightly-2022-12-01
131+
components: clippy
132+
- uses: Swatinem/rust-cache@v2
133+
134+
- run: cargo clippy --all-features -- -D warnings
113135

114136
lint-rustfmt:
115137
runs-on: ubuntu-latest

.github/workflows/twisted_trunk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ jobs:
174174

175175
steps:
176176
- uses: actions/checkout@v3
177-
- uses: JasonEtco/create-an-issue@5d9504915f79f9cc6d791934b8ef34f2353dd74d # v2.5.0, 2020-12-06
177+
- uses: JasonEtco/create-an-issue@77399b6110ef82b94c1c9f9f615acf9e604f7f56 # v2.5.0, 2020-12-06
178178
env:
179179
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
180180
with:

changelog.d/14528.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Share the `ClientRestResource` for both workers and the main process.

changelog.d/14597.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add missing type hints.

changelog.d/14602.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix Rust lint CI.

changelog.d/14607.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump JasonEtco/create-an-issue from 2.5.0 to 2.8.1.

changelog.d/14611.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Switch to Go recommended installation method for `gotestfmt` template in CI.

changelog.d/14612.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump phonenumbers from 8.13.0 to 8.13.1.

0 commit comments

Comments
 (0)