Skip to content

Commit

Permalink
Merge pull request #2 from SreeDan/fix/ci-dependency-issues
Browse files Browse the repository at this point in the history
  • Loading branch information
SreeDan authored Jul 6, 2024
2 parents 4a3fb74 + 522aa39 commit a3da641
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/rust_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
1 change: 0 additions & 1 deletion graphics/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,3 @@ pub fn convert_vec_rgb888_to_rgb565(rgb888_vec: &Vec<u8>) -> Vec<u8> {

rgb565_vec
}

0 comments on commit a3da641

Please sign in to comment.