Skip to content

Commit

Permalink
Fix actions and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jedel1043 committed May 27, 2022
1 parent 1f22e83 commit f2856ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 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/[email protected]
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
2 changes: 1 addition & 1 deletion boa_tester/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ license = "Unlicense/MIT"
publish = false

[dependencies]
boa_engine = { path = "../boa_engine", version = "0.14.0" }
boa_engine = { path = "../boa_engine", features = ["intl"], version = "0.14.0" }
boa_interner = { path = "../boa_interner", version = "0.14.0" }
structopt = "0.3.26"
serde = { version = "1.0.137", features = ["derive"] }
Expand Down

0 comments on commit f2856ec

Please sign in to comment.