Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - Integrate ICU4X into Intl module #2083

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/bors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,4 +159,4 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: doc
args: -v --document-private-items
args: -v --document-private-items --all-features
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: doc
args: -v --document-private-items
args: -v --document-private-items --all-features
- run: echo "<meta http-equiv=refresh content=0;url=boa_engine/index.html>" > target/doc/index.html
- run: |
if [ -d target/doc_upload ]; then rm -rf target/doc_upload; fi
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Run cargo-tarpaulin
uses: actions-rs/tarpaulin@v0.1
with:
args: --ignore-tests
args: --features intl --ignore-tests
- name: Upload to codecov.io
uses: codecov/codecov-action@v3

Expand All @@ -55,7 +55,7 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: test
args: -v
args: -v --features intl

test_on_macos:
name: Tests on MacOS
Expand All @@ -70,7 +70,7 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: test
args: -v
args: -v --features intl

fmt:
name: Rustfmt
Expand Down Expand Up @@ -163,4 +163,4 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: doc
args: -v --document-private-items
args: -v --document-private-items --all-features
Loading