Skip to content

Commit

Permalink
Added regression_test.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Shintaro Sakoda <[email protected]>
  • Loading branch information
SakodaShintaro committed Mar 11, 2024
1 parent a04e89d commit ee07a73
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/regression_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: regression_test

on:
pull_request:
types:
- opened
- synchronize

jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}

- name: Download data
run: |
./scripts/download_data.sh
- name: Build
run: |
mkdir -p build
cd build
cmake ..
make -j
cd ..
- name: Run
run: |
./scripts/execute_regression_test.sh

0 comments on commit ee07a73

Please sign in to comment.