auto accept packages
Some checks failed
Continuous integration / Check (push) Failing after 2m41s
Continuous integration / build (push) Has been cancelled

This commit is contained in:
Eau
2026-03-18 00:07:47 -05:00
parent 08a1634a4d
commit aa78a744a7

View File

@@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: apt update && apt install ${{ env.APT_PACKAGES }}
- run: apt update && apt install -y ${{ env.APT_PACKAGES }}
- run: rustup target add "${{ env.TARGET_PLATFORM }}"
- run: cargo check --target "${{ env.TARGET_PLATFORM }}"
build:
@@ -22,6 +22,6 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: apt update && apt install ${{ env.APT_PACKAGES }}
- run: apt update && apt install -y ${{ env.APT_PACKAGES }}
- run: rustup target add "${{ env.TARGET_PLATFORM }}"
- run: cargo build --target "${{ env.TARGET_PLATFORM }}