Skip to content

Commit 11a50f8

Browse files
authored
Fixing a typo (#13)
* Update workflow.yml * Update workflow.yml * Update workflow.yml
1 parent 2c01e9d commit 11a50f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ jobs:
1616
- name: Install Rust
1717
run: |
1818
rustup toolchain install nightly --component llvm-tools-preview rustfmt clippy
19+
# Installing wasm32 target for compiling the test-contract
1920
rustup toolchain install nightly --target wasm32-unknown-unknown
2021
21-
# Compining test-contract
22+
# Compiling the test-contract
2223
- name: Compiling test-contract
2324
run: |
2425
cd test-contract
@@ -33,12 +34,11 @@ jobs:
3334
- name: Upload coverage to Codecov
3435
uses: codecov/codecov-action@v1
3536
with:
36-
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
3737
files: lcov.info
3838
fail_ci_if_error: true
3939

4040
- name: fmt check
4141
run: cargo +nightly fmt --all -- --check
4242

4343
- name: Clippy check
44-
run: cargo +nightly clippy --all-targets --all-features -- -D warnings
44+
run: cargo +nightly clippy --all-targets --all-features -- -D warnings

0 commit comments

Comments
 (0)