Skip to content

Commit

Permalink
[BRE-443] - Fix bwwl lint pre Deployment (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeebru authored Dec 6, 2024
1 parent a89f211 commit b6a5831
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ defaults:

jobs:
build:
name: Build
runs-on: ubuntu-24.04
strategy:
fail-fast: false
Expand Down Expand Up @@ -52,6 +53,7 @@ jobs:
if-no-files-found: error

combine:
name: Combine
runs-on: ubuntu-24.04
needs: build
steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/delete-old-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
name: Cleanup Android SDK
runs-on: ubuntu-24.04
steps:
- uses: actions/delete-package-versions@e5bc658cc4c965c472efe991f8beea3981499c55 # v5.0.0
- name: Delete packages
uses: actions/delete-package-versions@e5bc658cc4c965c472efe991f8beea3981499c55 # v5.0.0
with:
package-name: com.bitwarden.sdk-android
package-type: maven
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/direct-minimal-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ jobs:
with:
key: dmv-${{ matrix.settings.target }}-cargo-${{ matrix.settings.os }}

- name: cargo check direct-minimal-versions
- name: Cargo check direct-minimal-versions
run: cargo check -Z direct-minimal-versions --all-features
2 changes: 1 addition & 1 deletion .github/workflows/minimum-rust-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ jobs:
with:
key: msrv-${{ matrix.settings.target }}-cargo-${{ matrix.settings.os }}

- name: cargo check MSRV
- name: Cargo check MSRV
run: cargo check --all-features
2 changes: 1 addition & 1 deletion .github/workflows/publish-rust-crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:

jobs:
setup:
name: setup
name: Setup
runs-on: ubuntu-24.04
outputs:
release-version: ${{ steps.version-output.outputs.version }}
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/rust-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,17 @@ env:

jobs:
ci-pass:
name: CI is green
name: Check if tests passed
runs-on: ubuntu-24.04
needs:
- test
steps:
- run: exit 0
- name: Check if tests passed
run: exit 0

test:
name: ${{ matrix.os }} / default

runs-on: ${{ matrix.os || 'ubuntu-24.04' }}

strategy:
matrix:
os:
Expand Down

0 comments on commit b6a5831

Please sign in to comment.