Skip to content

Commit

Permalink
-gettext
Browse files Browse the repository at this point in the history
  • Loading branch information
d-e-s-o committed Nov 11, 2023
1 parent bc46283 commit f44d5a6
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ jobs:
override: true
- name: Build & test ${{ matrix.profile }}
run: |
sudo apt-get update
sudo apt-get install --assume-yes libgpgme-dev gettext libgpg-error0
sudo apt-get install --assume-yes libgpgme-dev libgpg-error0
cargo build --profile=${{ matrix.profile }} --all-targets
cargo test --profile=${{ matrix.profile }}
build-minimum:
Expand All @@ -62,7 +61,9 @@ jobs:
toolchain: 1.56.0
default: true
- name: Build
run: cargo build --locked
run: |
sudo apt-get install --assume-yes libgpgme-dev libgpg-error0
cargo build --locked
clippy:
name: Lint with clippy
runs-on: ubuntu-latest
Expand All @@ -73,4 +74,6 @@ jobs:
toolchain: stable
components: clippy
override: true
- run: cargo clippy --no-deps --all-targets --all-features --tests -- -A unknown_lints -A deprecated -D warnings
- run: |
sudo apt-get install --assume-yes libgpgme-dev libgpg-error0
cargo clippy --no-deps --all-targets --all-features --tests -- -A unknown_lints -A deprecated -D warnings

0 comments on commit f44d5a6

Please sign in to comment.