Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
name: C/C++ CI

on:
push:
branches: [ master develop ]
pull_request:
branches: [ master develop ]
on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v5
- name: resolve dependency
run: |
sudo apt-get -qq update
sudo apt-get -qq install byacc
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

- name: configure
run: ./configure
run: |
sh bin/setup.sh
./configure
- name: make
run: make
- name: make check
Expand Down