Skip to content

Commit ade696b

Browse files
committed
ci: Shell scripting is hard.
I suppose I should've tried getting it to work on a separate branch first to avoid both force pushes and an unclean history. Doesn't matter now because it will work this time.
1 parent 8cf8447 commit ade696b

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@ name: Rust
22

33
on: [push, pull_request]
44

5-
defaults:
6-
run:
7-
shell: bash
8-
95
jobs:
106
build:
117
strategy:
@@ -26,7 +22,7 @@ jobs:
2622
- run: cargo build
2723
- name: Prepare UI tests for nightly
2824
if: matrix.rust == 'nightly'
29-
run: for x in "test_suite/ui/*.nightly"; do cp "$x" "${x%.nightly}"; done
25+
run: for x in test_suite/ui/*.nightly; do cp "$x" "${x%.nightly}"; done
3026
- run: cargo test --all ${{ matrix.extra-test-opts }}
3127
clippy:
3228
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)