Add more 不断发 phrases #814
Workflow file for this run
This file contains 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: CMake | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build-and-test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: make build | |
run: make build VERBOSE=1 REL_BUILD_DOCUMENTATION=OFF | |
- name: make test | |
run: make test VERBOSE=1 | |
- name: make benchmark | |
run: make benchmark VERBOSE=1 |