Skip to content

Commit

Permalink
ci: Build in release mode
Browse files Browse the repository at this point in the history
  • Loading branch information
28Smiles committed Jul 14, 2022
1 parent b766584 commit cf526e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:
name: Cargo Build
with:
command: build
args: --verbose --features std
args: --verbose --features std --release
- uses: actions-rs/cargo@v1
name: Cargo Test
with:
command: test
args: --verbose --features std
args: --verbose --features std --release
js-pretest:
runs-on: ubuntu-latest
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ jobs:
name: Cargo Build
with:
command: build
args: --verbose --features std
args: --verbose --features std --release
- uses: actions-rs/cargo@v1
name: Cargo Test
with:
command: test
args: --verbose --features std
args: --verbose --features std --release
js-pretest:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit cf526e4

Please sign in to comment.