Skip to content

Commit

Permalink
✨ feat: PR tests
Browse files Browse the repository at this point in the history
✨ feat: PR tests
  • Loading branch information
Jon-Becker committed Dec 29, 2022
2 parents 4e901eb + 25c987a commit 9b1db82
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/pull_request_checks.yml
@@ -0,0 +1,26 @@
name: PR Tests

on:
pull_request_review:
types: [submitted]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Compile
working-directory: ./heimdall
run: cargo build --verbose

- name: Run Tests
working-directory: ./heimdall
run: |
cargo test --package heimdall -- test_ --nocapture
cargo test --package heimdall-config -- test_ --nocapture
cargo test --package heimdall-common -- test_ --nocapture

0 comments on commit 9b1db82

Please sign in to comment.