diff --git a/.github/workflows/crates-io.yml b/.github/workflows/crates-io.yml index 1377d19..2f8846a 100644 --- a/.github/workflows/crates-io.yml +++ b/.github/workflows/crates-io.yml @@ -16,6 +16,8 @@ jobs: uses: actions-rs/toolchain@v1 with: toolchain: stable + - name: Install xmllint + run: sudo apt-get install -y libxml2-utils - name: Login to crates.io uses: actions-rs/cargo@v1 with: diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index edcdb4c..f0c8de7 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -18,6 +18,8 @@ jobs: uses: actions-rs/toolchain@v1 with: toolchain: stable + - name: Install xmllint + run: sudo apt-get install -y libxml2-utils - name: Build run: cargo build --verbose - name: Run tests