Skip to content

[CI] add linux test build #1

[CI] add linux test build

[CI] add linux test build #1

Workflow file for this run

name: C/C++ CI
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
linux-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Prepare
run: ./autogen.sh && ./configure
- name: Build
run: make -s
- name: Run tests
run: make -s check