Skip to content

Commit

Permalink
Gh action test (#1)
Browse files Browse the repository at this point in the history
* ci: added gh actions test run script

* ci: fix gh actions test run script
  • Loading branch information
BRAVO68WEB authored Jun 11, 2024
1 parent 7c10728 commit 2dc15a6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test-run.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "Project Test Run"

on:
workflow_dispatch:
push:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Installing Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Download PKG Databases
run: ./scripts/get_dbs.sh
- name: Building with Cargo
uses: actions-rs/cargo@v1
with:
command: build
args: --release
- name: Run DBGen Parse
run: cargo run --release --bin dbgen

0 comments on commit 2dc15a6

Please sign in to comment.