Skip to content

Fix minor issues

Fix minor issues #1

Workflow file for this run

name: clang 19
on: [pull_request]
jobs:
build:
name: Compiles with clang 19
runs-on: ubuntu-24.04
steps:
- name: checkout
uses: actions/checkout@v4
- name: install packages
run: sudo apt install build-essential nettle-dev time clang-19
- name: bootstrap
run: ./bootstrap.sh
- name: configure
run: ./configure CXX=clang++-19
- name: build
run: make
- name: check
run: make check
- name: store the logs as an artifact
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
path: '**/*.log'