Skip to content

Commit

Permalink
[CI] add linux test build
Browse files Browse the repository at this point in the history
  • Loading branch information
jgarzik committed Feb 25, 2024
1 parent 89355a0 commit 0f08be0
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/TestingCI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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

0 comments on commit 0f08be0

Please sign in to comment.