Skip to content

docs: warn about GCC 14 compilation error #29

docs: warn about GCC 14 compilation error

docs: warn about GCC 14 compilation error #29

Workflow file for this run

name: ci
on: [pull_request, push]
jobs:
check:
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: build
run: make CC=$(brew --prefix llvm@18)/bin/clang
- name: run
run: |
touch x
bin/can x
if [[ -f x ]]; then
exit 1
fi