Update Pipeline

This commit is contained in:
2025-07-18 15:04:02 +02:00
parent ebed65e0b2
commit d948ad81aa

View File

@@ -16,6 +16,8 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install rustfmt for nightly - name: Install rustfmt for nightly
run: rustup component add --toolchain nightly-x86_64-unknown-linux-gnu rustfmt clippy run: rustup component add --toolchain nightly-x86_64-unknown-linux-gnu rustfmt clippy
- name: Add AArch64 Target
run: rustup target add aarch64-unknown-none
- name: Run format check - name: Run format check
run: cargo fmt --check run: cargo fmt --check
- name: Run lint - name: Run lint
@@ -28,5 +30,7 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install rustfmt for nightly - name: Install rustfmt for nightly
run: rustup component add --toolchain nightly-x86_64-unknown-linux-gnu rustfmt clippy run: rustup component add --toolchain nightly-x86_64-unknown-linux-gnu rustfmt clippy
- name: Add AArch64 Target
run: rustup target add aarch64-unknown-none
- name: Build - name: Build
run: cargo build --verbose run: cargo build --verbose