fix the warning CPM: Your project is using an unstable development version of CPM.cmake. when using FetchContent #260
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Examples | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
gcc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: build all | |
env: | |
CC: gcc | |
CXX: g++ | |
run: python3 examples/build_all.py | |
clang: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: build all | |
env: | |
CC: clang | |
CXX: clang++ | |
run: python3 examples/build_all.py |