Skip to content

Commit 2245154

Browse files
committed
Change from using aliasing to accessible terminology in godot-cell.
1 parent 8d350e6 commit 2245154

File tree

7 files changed

+207
-192
lines changed

7 files changed

+207
-192
lines changed

.github/workflows/full-ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -158,25 +158,25 @@ jobs:
158158
name: miri-test
159159
runs-on: ubuntu-20.04
160160
steps:
161-
- uses: actions/checkout@v3
161+
- uses: actions/checkout@v4
162162

163163
- name: "Install Rust"
164164
uses: ./.github/composite/rust
165+
with:
166+
rust: nightly
167+
components: miri
165168

166-
- name: "Install Miri"
167-
run: |
168-
rustup toolchain install nightly --component miri
169-
rustup override set nightly
170-
cargo miri setup
169+
- name: "Setup Miri"
170+
run: cargo miri setup
171171

172172
- name: "Compile tests"
173-
run: cargo +nightly miri test -p godot-cell --no-run
173+
run: cargo miri test -p godot-cell --no-run
174174

175175
- name: "Test stacked borrows"
176-
run: cargo +nightly miri test -p godot-cell
176+
run: cargo miri test -p godot-cell
177177

178178
- name: "Test tree borrows"
179-
run: MIRIFLAGS="-Zmiri-tree-borrows" cargo +nightly miri test -p godot-cell
179+
run: MIRIFLAGS="-Zmiri-tree-borrows" cargo miri test -p godot-cell
180180

181181

182182
# For complex matrix workflow, see https://stackoverflow.com/a/65434401

0 commit comments

Comments
 (0)