Skip to content

update copyright dates to 2026 #196

update copyright dates to 2026

update copyright dates to 2026 #196

Workflow file for this run

name: ARM GCC
on:
pull_request:
branches:
- main
jobs:
arm64_gcc:
name: ARM64 GCC
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v6
- name: Configure
run: |
cmake -S . -B build \
-DCMAKE_CXX_STANDARD=20 \
-DUNITS_ENABLE_TESTS=ON \
-DUNITS_DISABLE_EXTRA_UNIT_STANDARDS=ON
- name: Build
run: cmake --build build -j4
- name: Test
run: |
cd build
ctest --output-on-failure