Skip to content

Commit 53d0fea

Browse files
committed
docstrings + doxygen documentation (wip)
1 parent 64fe37e commit 53d0fea

File tree

6 files changed

+5620
-47
lines changed

6 files changed

+5620
-47
lines changed

.github/workflows/build.yml

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
1-
name: build
1+
name: gpucpp-ci
22

3-
on:
3+
on:
44
push:
5+
branches:
6+
- main
57
pull_request:
68
types: [opened, reopened, labeled, unlabeled, synchronize]
9+
branches:
10+
- main
711
workflow_dispatch:
812

913
jobs:
1014
build:
11-
- name: Build
12-
run:
13-
echo "Hello, ${{ github.actor }}"
14-
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout repository
18+
uses: actions/checkout@v2
19+
20+
- name: No-op Step
21+
run: echo "This is a no-op action"

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
build/*
22
examples/hello_gpu/build/*
33
examples/raymarch/build/*
4+
docs/html

0 commit comments

Comments
 (0)