Skip to content

avoid crashing on bad input with qalc >= 5.0.0 #75

avoid crashing on bad input with qalc >= 5.0.0

avoid crashing on bad input with qalc >= 5.0.0 #75

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
name: Building with ${{ matrix.compiler }}
runs-on: ubuntu-20.04
strategy:
matrix:
compiler: [clang, gcc]
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: |
sudo apt install rofi-dev
- name: make
run: |
export CC=${{ matrix.compiler }}
autoreconf -i
./configure
make -j$(nproc)