mirror of
https://github.com/fastfloat/fast_float.git
synced 2025-12-08 01:36:49 +08:00
16 lines
348 B
YAML
16 lines
348 B
YAML
name: Ubuntu 22.04 CI (GCC 11)
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
ubuntu-build:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Use cmake
|
|
run: |
|
|
mkdir build &&
|
|
cd build &&
|
|
cmake -DFASTFLOAT_TEST=ON .. &&
|
|
cmake --build . &&
|
|
ctest --output-on-failure |