Skip to content

Update star history chart link in README #3

Update star history chart link in README

Update star history chart link in README #3

Workflow file for this run

name: Linux
on:
push:
branches: [master]
pull_request:
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
cmake \
g++ \
qt6-base-dev \
libgl1-mesa-dev \
libcapstone-dev
- name: Configure
run: cmake -S src -B build -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build build -j"$(nproc)"
- name: Regression suite
run: tests/regression/run_all.sh