Skip to content

Commit a537053

Browse files
authored
Merge pull request #756 from tweedegolf/fix_ci
Fix CI
2 parents 739cd04 + 5043c50 commit a537053

File tree

4 files changed

+35
-20
lines changed

4 files changed

+35
-20
lines changed

.github/workflows/main.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,11 @@ jobs:
3232
runs-on: ${{ matrix.os }}
3333
steps:
3434
- uses: actions/checkout@v2
35-
- uses: actions-rs/cargo@v1
3635
- uses: actions-rs/toolchain@v1
3736
with:
3837
toolchain: stable
3938
- name: Test
40-
run: cargo test --all --exclude twiggy-wasm-api
39+
run: cargo test --all --exclude twiggy-wasm-api
4140
wasm:
4241
runs-on: ubuntu-latest
4342
steps:
@@ -61,4 +60,4 @@ jobs:
6160
# with:
6261
# branch: master
6362
# folder: guide/book
64-
# token: ${{ secrets.GITHUB_TOKEN }}
63+
# token: ${{ secrets.GITHUB_TOKEN }}

Cargo.lock

+31-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

opt/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ regex = "1.4.2"
1919
anyhow = "1.0"
2020
structopt = { version = "0.3", optional = true }
2121
twiggy-traits = { version = "=0.7.0", path = "../traits" }
22-
wasm-bindgen = { version = "0.2.80", optional = true }
22+
wasm-bindgen = { version = "0.2.100", optional = true }
2323
cfg-if = "1.0.0"
2424

2525
[features]

wasm-api/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ version = "=0.7.0"
3535
path = "../traits"
3636

3737
[dependencies.wasm-bindgen]
38-
version = "0.2.80"
38+
version = "0.2.100"
3939

4040
[features]
4141
default = ["emit_json"]

0 commit comments

Comments
 (0)