diff --git a/.github/workflows/rust_ci.yml b/.github/workflows/rust_ci.yml index e3d2d12..3fdc807 100644 --- a/.github/workflows/rust_ci.yml +++ b/.github/workflows/rust_ci.yml @@ -23,8 +23,6 @@ jobs: args: --release - command: fmt args: --all -- --check --color always - - command: clippy - args: --all-targets --all-features --workspace -- -D warnings steps: - name: Checkout repository uses: actions/checkout@v4 @@ -36,5 +34,15 @@ jobs: ldproxy: true - name: Enable caching uses: Swatinem/rust-cache@v2 + - name: Create env txt files + run: | + touch api_url.txt + touch auth_token.txt + touch wifi_ssid.txt + touch wifi_password.txt + - name: Downgrade ravif + run: cargo update ravif --precise 0.11.5 + - name: Downgrade bitstream-io + run: cargo update bitstream-io --precise 2.3.0 - name: Run command run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }} diff --git a/graphics/src/lib.rs b/graphics/src/lib.rs index 67534bf..540f891 100644 --- a/graphics/src/lib.rs +++ b/graphics/src/lib.rs @@ -20,4 +20,3 @@ pub fn convert_vec_rgb888_to_rgb565(rgb888_vec: &Vec) -> Vec { rgb565_vec } -