Skip to content

Commit 030c11a

Browse files
committed
fix tests
1 parent 38904c5 commit 030c11a

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ jobs:
6868
- name: Install cargo-docs-rs
6969
uses: dtolnay/install@cargo-docs-rs
7070
- name: cargo docs-rs
71-
run: cargo docs-rs
71+
run: cargo docs-rs -p chip8-interpreter

.github/workflows/test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ jobs:
5454
gleam-version: "1.11.1"
5555
rebar3-version: "3"
5656
# elixir-version: "1"
57-
- run: cd ui
5857
- run: gleam deps download
58+
working-directory: ./ui
5959
- run: gleam test
60-
- run: gleam format --check src test
60+
working-directory: ./ui
61+
- run: gleam format --check src test
62+
working-directory: ./ui

crates/chip8-interpreter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ fastrand = "2.3.0"
1313
rustler = { version = "0.36.2", optional = true }
1414

1515
[lib]
16-
crate-type = ["dylib"]
16+
crate-type = ["lib", "dylib"]

0 commit comments

Comments
 (0)