Skip to content

Commit 052e5ee

Browse files
committed
Merge branch 'main' into dev
2 parents 2013dbb + efb95d0 commit 052e5ee

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/test.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Build and Testing ePass
2+
3+
on:
4+
push:
5+
branches: [ "main", "dev" ]
6+
7+
env:
8+
BUILD_TYPE: Release
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Configure CMake
18+
run: cmake -S core -B build -DCMAKE_BUILD_TYPE=Release
19+
20+
- name: Build
21+
run: cmake --install build --config Release
22+
23+
- name: Test
24+
working-directory: ${{github.workspace}}/test
25+
run: |
26+
./gen_tests.sh
27+
./run_tests.sh
28+

0 commit comments

Comments
 (0)