Skip to content

Commit

Permalink
Update the CI workflow to build and test UTF32
Browse files Browse the repository at this point in the history
  • Loading branch information
ridiculousfish committed Feb 4, 2024
1 parent 708effe commit 529780e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ jobs:
with:
toolchain: ${{ matrix.rust }}
- name: Build
run: cargo build --verbose --all
run: cargo build --verbose --all --features utf32
- name: Build docs
run: cargo doc --verbose --all
run: cargo doc --verbose --all --features utf32
- name: Run tests
run: cargo test --verbose --all
run: cargo test --verbose --all --features utf32
- name: Run tests with static build
shell: bash
run: PCRE2_SYS_STATIC=1 cargo test --verbose --all
run: PCRE2_SYS_STATIC=1 cargo test --verbose --all --features utf32

rustfmt:
name: rustfmt
Expand Down

0 comments on commit 529780e

Please sign in to comment.