Skip to content

Commit

Permalink
ci: test JavaScript feature too
Browse files Browse the repository at this point in the history
  • Loading branch information
w-henderson committed Jan 25, 2024
1 parent cc1294d commit f73f2c8
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ jobs:
command: check
args: -p stuart

- name: Run cargo check --all-features
uses: actions-rs/cargo@v1
with:
command: check
args: -p stuart --all-features

test:
name: Test
runs-on: ubuntu-latest
Expand All @@ -46,4 +52,10 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
args: -p stuart
args: -p stuart

- name: Run cargo test --all-features
uses: actions-rs/cargo@v1
with:
command: test
args: -p stuart --all-features

0 comments on commit f73f2c8

Please sign in to comment.