summaryrefslogtreecommitdiff
blob: 0f8e6e1b8a1bc3be635dc81610c8c0e9fce4a5ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# GitHub actions workflow.
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions

name: CI

on: [pull_request, push]

jobs:
  make:
    steps:
    - name: Install dependencies
      run: |
        sudo apt-get update
        sudo apt-get install -y build-essential autoconf
    - uses: actions/checkout@v4
    - name: Run tests
    - run: |
        make check