Skip to content

Commit c7033cc

Browse files
authored
Merge pull request #1 from hacperme/hacperme-patch-1
Create ci.yml
2 parents 9608be4 + 3f61761 commit c7033cc

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CMake
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
env:
8+
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
9+
BUILD_TYPE: Release
10+
11+
jobs:
12+
build:
13+
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac.
14+
# You can convert this to a matrix build if you need cross-platform coverage.
15+
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- uses: actions/checkout@v3
20+
21+
- name: Build
22+
# Build your program with the given configuration
23+
run: make

0 commit comments

Comments
 (0)