Skip to content

Commit 720a18d

Browse files
committed
Enforce 1.85 toolchain in Dart/Python workflows
It was previously being overriden by rust-toolchain.toml
1 parent c0d47cf commit 720a18d

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/dart.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ on:
55
- payjoin-ffi/**
66

77
jobs:
8+
env:
9+
# Override the value from the rust-toolchain file
10+
# This is necessary because even though the correct toolchain
11+
# is explicitly specified for the rust-toolchain action,
12+
# rustup honors the rust-toolchain file over the default
13+
RUSTUP_TOOLCHAIN: 1.85
814
test:
915
runs-on: ${{ matrix.os }}
1016
defaults:

.github/workflows/python.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ on:
55
- payjoin-ffi/**
66

77
jobs:
8+
env:
9+
# Override the value from the rust-toolchain file
10+
# This is necessary because even though the correct toolchain
11+
# is explicitly specified for the rust-toolchain action,
12+
# rustup honors the rust-toolchain file over the default
13+
RUSTUP_TOOLCHAIN: 1.85
814
build-wheels-and-test:
915
name: "Build and test Linux"
1016
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)