Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Commit

Permalink
[CI] add linux build test
Browse files Browse the repository at this point in the history
  • Loading branch information
jgarzik committed Feb 25, 2024
1 parent 133764e commit 8dd566d
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: CI

on: [push]

env:
CARGO_TERM_COLOR: always

jobs:
linux-ubuntu:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Install deps
run: sudo apt-get -y install flex bison
- name: Prepare
run: ./autogen.sh && ./configure
- name: Build
run: make -s

0 comments on commit 8dd566d

Please sign in to comment.