Skip to content

Commit

Permalink
fixed workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
FloppyDisck committed Nov 4, 2024
1 parent e91a2e7 commit c849b8d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/Basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,6 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v2

- name: Run unit tests
uses: actions-rs/cargo@v1
with:
command: unit-test
args: --locked
env:
RUST_BACKTRACE: 1

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
Expand All @@ -33,10 +25,18 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: wasm
args: --locked
args: --locked --release
env:
RUSTFLAGS: "-C link-arg=-s"

- name: Run unit tests
uses: actions-rs/cargo@v1
with:
command: unit-test
args: --locked
env:
RUST_BACKTRACE: 1

lints:
name: Lints
runs-on: ubuntu-latest
Expand Down

0 comments on commit c849b8d

Please sign in to comment.