Skip to content

Commit acac358

Browse files
authored
chore: Fix docs-building and nightly-build in CI (#25)
[skip ci]
1 parent cb0cd73 commit acac358

4 files changed

Lines changed: 9 additions & 8 deletions

File tree

.github/workflows/deploy-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020

2121
- name: Install dependencies
2222
run: |
23-
python -m pip install --upgrade pip
24-
pip install .[docs]
2523
sudo apt-get update
2624
sudo apt-get install -y doxygen
25+
python -m pip install --upgrade pip
26+
pip install -e .[docs]
2727
2828
- name: Build docs
2929
run: |

.github/workflows/nightly-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Nightly build
22

33
on:
44
schedule:
5-
- cron: '12 0 * * *' # Runs every day at 20:00 Beijing time
5+
- cron: '0 12 * * *' # Runs every day at 20:00 Beijing time
66
workflow_dispatch:
77

88
jobs:
99
nightly:
10-
uses: ./.github/workflows/build-wheels.yml
10+
uses: ./.github/workflows/build-wheels.yml

.github/workflows/test-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run pytest
1+
name: Test package
22

33
on:
44
push:
@@ -48,10 +48,10 @@ jobs:
4848

4949
- name: Install dependencies
5050
run: |
51-
python -m pip install --upgrade pip
52-
pip install .[docs]
5351
sudo apt-get update
5452
sudo apt-get install -y doxygen
53+
python -m pip install --upgrade pip
54+
pip install -e .[docs]
5555
5656
- name: Build docs
5757
run: |

cpp/src/uproot-custom.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ namespace uproot {
116116
/**
117117
* @brief Read a TObject from the buffer. A TObject contains `fVersion` (int16_t),
118118
* `fUniqueID` (int32_t), `fBits` (uint32_t). If `fBits & kIsReferenced`, then a `pidf`
119-
* (uint16_t) follows. @n If @ref m_keep_data is true, the read data will be stored.
119+
* (uint16_t) follows. If @ref m_keep_data is true, the read data
120+
* will be stored.
120121
*
121122
* @param buffer The binary buffer to read from
122123
*/

0 commit comments

Comments
 (0)