Skip to content

Commit 6ff0a1f

Browse files
authored
ci: added gh actions test run script
1 parent f31318f commit 6ff0a1f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/test-run.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: "Project Test Run"
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
pull_request:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Installing Rust
14+
uses: actions-rust-lang/setup-rust-toolchain@v1
15+
- name: Download PKG Databases
16+
run: ./scripts/get_dbs.sh
17+
- name: Run DBGen Parse
18+
run: |
19+
cd packages/dbgen
20+
cargo build --release
21+
cargo run --release

0 commit comments

Comments
 (0)