Skip to content

Commit

Permalink
Add Doxygen check
Browse files Browse the repository at this point in the history
  • Loading branch information
sleeepyjack committed Aug 19, 2023
1 parent 1166769 commit 8549c19
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,25 @@ concurrency:
cancel-in-progress: true

jobs:
doxygen-check:
name: Doxygen check
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Install Doxygen
run: |
sudo apt-get update
sudo apt-get install -y doxygen
- name: Check Doxygen docs
run: |
./ci/pre-commit/doxygen.sh
if [ $? -ne 0 ]; then
echo "Doxygen check failed"
exit 1
fi
shell: bash -euxo pipefail {0}

get-devcontainer-version:
name: Get devcontainer version
runs-on: ubuntu-latest
Expand Down
5 changes: 0 additions & 5 deletions include/cuco/static_map.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -1864,11 +1864,6 @@ class static_map {
erased_key<Key>{erased_key_sentinel_});
}

/**
* @brief Constructs a device_mutable_view object based on the members of the `static_map` object
*
* @return A device_mutable_view object based on the members of the `static_map` object
*/
device_mutable_view get_device_mutable_view() const noexcept
{
return device_mutable_view(slots_,
Expand Down

0 comments on commit 8549c19

Please sign in to comment.