Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#MERGE: prep for v1.0.0-rc1 #116

Merged
merged 38 commits into from
Apr 29, 2024
Merged
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
1557b42
#EDITS: changes
akielaries Mar 19, 2024
d2f3bec
#EDITS: changes
akielaries Mar 19, 2024
b21809f
#EDITS: updates to tinygpmp module
akielaries Mar 30, 2024
8600808
#tinygpmp: tinkering with STM32
akielaries Apr 1, 2024
ee44266
#tinygpmp: edits to `stm.c` with working 3 pin control
akielaries Apr 2, 2024
654fb78
#tinygpmp: tinygpmp is a WIP will be written in C (FOR NOW?) and pote…
akielaries Apr 2, 2024
f9b5ee1
#TEST: comparing C and C++ attributes for embedded
akielaries Apr 13, 2024
2dc51ba
#TEST: comparing with arm-gcc and arm-g++
akielaries Apr 13, 2024
639c50f
#EDITS: updating readme with tinygpmp progress
akielaries Apr 13, 2024
1c14658
#tinygpmp: edits to CMake file for this portion of the project
akielaries Apr 15, 2024
3d36dee
#tinygpmp: edits to CMake file for this portion of the project
akielaries Apr 15, 2024
ff67035
#benchmarks: cleanup
akielaries Apr 15, 2024
bfb19f7
#EDITS: edits to experiment dir
akielaries Apr 15, 2024
5b52ab1
#EDITS: CMake updates
akielaries Apr 16, 2024
c9914c3
#tinygpmp: CMake updates
akielaries Apr 17, 2024
3a08812
#BUILD: updating core CMake file and `CONTRIBUTING.md`
akielaries Apr 19, 2024
8932265
#BUILD: updating CMake build. new issue related to not detecting the …
akielaries Apr 19, 2024
2b6ae0e
#BUILD: edits to build system and restructuring of linalg module
akielaries Apr 19, 2024
a99e58f
#DOCS: Update Modules.md
akielaries Apr 19, 2024
6d526a9
#DOCS: Update Modules.md
akielaries Apr 19, 2024
116690c
'#DOCS: fixes to module map'
akielaries Apr 20, 2024
0dae86a
#DOCS: fixes to module map
akielaries Apr 20, 2024
98fa1e3
#DOCS: fixes to module map
akielaries Apr 20, 2024
afd038e
#DOCS: fixes to module map
akielaries Apr 20, 2024
204735b
#DOCS: fixes to module map
akielaries Apr 20, 2024
c4d5372
#EDITS: adding clang-format workflow on PRs
akielaries Apr 20, 2024
b8bcd77
#BUILD: fixing some warnings
akielaries Apr 20, 2024
75eece7
#DOCS: updates to module map
akielaries Apr 20, 2024
9c884c9
#DOCS: fixes to module map
akielaries Apr 20, 2024
bb8f0cd
#DOCS: fixes to module map
akielaries Apr 20, 2024
b202d2c
#EDITS: updating changelog
akielaries Apr 21, 2024
8f46992
#EDITS: updating changelog
akielaries Apr 21, 2024
8405849
#EDITS: updating README with rationale
akielaries Apr 21, 2024
1791086
#EDITS: mass updates including source code includes, cmake build fixe…
akielaries Apr 21, 2024
215f9d1
#EDITS: updating test directory includes. need to modify test suite t…
akielaries Apr 21, 2024
fdd87aa
#EDITS: formatting
akielaries Apr 21, 2024
2b44011
#EDITS: updates to stats module and adding examples for CDFs, PDFs, a…
akielaries Apr 23, 2024
6efd9a0
#EDITS: prepping for v1.0.0-rc1 release
akielaries Apr 29, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: "Format sourcecode"

# run on pull requests to develop
on:
pull_request:
branches:
- main

jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
# check out HEAD on the branch
ref: ${{ github.head_ref }}
# make sure the parent commit is grabbed as well, because
# that's what will get formatted (i.e. the most recent commit)
fetch-depth: 2
# format the latest commit
- uses: purduesigbots/clang-format-action@1
# use one of clang-format's supported styles or leave this out to use the style in your .clang-format file
with:
style: file
# commit the changes (if there are any)
- name: Commit changes
uses: stefanzweifel/[email protected]
with:
commit_message: 🎨 apply clang-format changes
branch: ${{ github.head_ref }}
Loading