Skip to content

Commit a3cd5e0

Browse files
authored
ci: fix gh actions test run script
1 parent bbb4177 commit a3cd5e0

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/test-run.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ jobs:
1414
uses: actions-rust-lang/setup-rust-toolchain@v1
1515
- name: Download PKG Databases
1616
run: ./scripts/get_dbs.sh
17+
- name: Building with Cargo
18+
uses: actions-rs/cargo@v1
19+
with:
20+
command: build
21+
args: --release
1722
- name: Run DBGen Parse
18-
run: |
19-
cd packages/dbgen
20-
cargo build --release
21-
cargo run --release
23+
run: cargo run --release --bin dbgen

0 commit comments

Comments
 (0)