Skip to content

Commit b3ea59a

Browse files
authored
Add: [Action] workflow to run tests (#21)
1 parent e8ac13d commit b3ea59a

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/testing.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Testing
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
8+
jobs:
9+
testing:
10+
name: Test
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
- name: Test
16+
run: |
17+
git config --global user.name "$(git log -n 1 --format=%cn)"
18+
git config --global user.email "$(git log -n 1 --format=%ce)"
19+
make

0 commit comments

Comments
 (0)