Configuration github workflow

This commit is contained in:
Vinicius Silva 2023-12-26 20:13:00 -03:00
parent b4330a0b1f
commit bcba19f917
1 changed files with 27 additions and 0 deletions

27
.github/workflows/test.yml vendored Normal file
View File

@ -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: actions/setup-cmake@v2
with:
cmake-version: 3.21
- name: Configure and build
run: |
cmake .
make