Skip to content

Commit cd848c2

Browse files
committed
Don't use default features in testcrate
1 parent 9ef36ac commit cd848c2

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
shell: bash
5454
- name: Build ${{ matrix.lua }}
5555
run: |
56-
cargo build --manifest-path testcrate/Cargo.toml --target ${{ matrix.target }} --release --no-default-features --features ${{ matrix.lua }}
56+
cargo build --manifest-path testcrate/Cargo.toml --target ${{ matrix.target }} --release --features ${{ matrix.lua }}
5757
shell: bash
5858

5959
test:
@@ -78,7 +78,7 @@ jobs:
7878
target: ${{ matrix.target }}
7979
- name: Run ${{ matrix.lua }} tests
8080
run: |
81-
cargo test --manifest-path testcrate/Cargo.toml --release --no-default-features --features ${{ matrix.lua }}
81+
cargo test --manifest-path testcrate/Cargo.toml --release --features ${{ matrix.lua }}
8282
shell: bash
8383

8484
rustfmt:

testcrate/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ version = "0.1.0"
44
authors = ["Aleksandr Orlenko <zxteam@protonmail.com>"]
55

66
[features]
7-
default = ["lua53"]
87
lua54 = []
98
lua53 = []
109
lua52 = []

0 commit comments

Comments
 (0)