Skip to content

Commit

Permalink
Create GitHub actions.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bluewww committed Mar 10, 2024
1 parent bd48bf6 commit 08e5fb6
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: TRDB CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: autoreconf
run: autoreconf -vif
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: ./tests

0 comments on commit 08e5fb6

Please sign in to comment.