Skip to content

Configure basic actions #4

Configure basic actions

Configure basic actions #4

Workflow file for this run

name: build and test master
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-24.04-arm
strategy:
matrix:
compiler: ["gcc", "clang"]
steps:
- uses: actions/checkout@v4
- name: install dependencies
run: sudo apt-get install libmpfr-dev libmpc-dev clang
- name: configure
run: cp config.mk.dist config.mk
- name: CC="${{ matrix.compiler }}" make
run: CC="${{ matrix.compiler }}" make -j
- name: CC="${{ matrix.compiler }}" make check
run: CC="${{ matrix.compiler }}" make check -j