Skip to content

Commit

Permalink
add unit test actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtazz committed Jan 9, 2024
1 parent f3ce532 commit a1e49cc
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: test

on:
workflow_dispatch:
pull_request:
types: [opened, synchronize]


jobs:
unit:
name: unit
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: build
run: |
./autogen.sh
./configure --enable-coverage
- name: run tests
run: make ci

0 comments on commit a1e49cc

Please sign in to comment.