mirror of
https://github.com/fastfloat/fast_float.git
synced 2025-12-08 01:36:49 +08:00
18 lines
446 B
YAML
18 lines
446 B
YAML
name: Ubuntu 22.04 CI (clang 14)
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
ubuntu-build:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install clang++-14
|
|
run: sudo apt-get install -y clang++-14
|
|
- name: Use cmake
|
|
run: |
|
|
mkdir build &&
|
|
cd build &&
|
|
CXX=clang++-14 cmake -DFASTFLOAT_TEST=ON .. &&
|
|
cmake --build . &&
|
|
ctest --output-on-failure |