Skip to content

Commit 57950e0

Browse files
committed
Add GitHub Actions steps for Rust linting and fish shell install
1 parent e722f85 commit 57950e0

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/copilot-setup-steps.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,15 @@ jobs:
4040

4141
- name: Setup Rust nightly toolchain
4242
uses: actions-rust-lang/setup-rust-toolchain@v1
43+
with:
44+
toolchain: nightly
45+
components: rustfmt, clippy
46+
47+
- name: Install fish shell (for integration tests)
48+
run: sudo apt-get update && sudo apt-get install -y fish
49+
50+
- name: Verify formatting compliance
51+
run: cargo fmt --check
4352

4453
- run: cargo install --path . --debug
4554
- run: git ai hook install

0 commit comments

Comments
 (0)