From aa78a744a7aff566e055dcc32e555357bd2dcb02 Mon Sep 17 00:00:00 2001 From: Lauren Kaviak Date: Wed, 18 Mar 2026 00:07:47 -0500 Subject: [PATCH] auto accept packages --- .gitea/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 38a4b45..7bb289f 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -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 }} \ No newline at end of file