Skip to content

Fixed workflows

Fixed workflows #6

Workflow file for this run

name: C CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: update apt repositories
run: sudo apt -y update
- name: install dependencies
run: sudo apt -y install check libtool-bin valgrind
- name: bootstrap
run: ./bootstrap.sh
- name: configure C
run: ./configure CC=gcc --enable-debug
- name: make
run: make
- name: make check
run: make check