Compare commits
6 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
04a71cbcb8 | |
|
|
f9c186ae95 | |
|
|
b62d57b2e2 | |
|
|
bcba19f917 | |
|
|
676c923e5c | |
|
|
4fba1dd7b4 |
|
|
@ -0,0 +1,27 @@
|
|||
name: Pingpong
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [dev]
|
||||
|
||||
pull_request:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Set up CMake
|
||||
uses: threeal/cmake-action@v1.3.0
|
||||
with:
|
||||
cmake-version: 3.21
|
||||
|
||||
- name: Configure and build
|
||||
run: |
|
||||
cmake .
|
||||
make
|
||||
|
||||
Loading…
Reference in New Issue