We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a062b0c commit ed98fefCopy full SHA for ed98fef
.ci/atime/tests.R
@@ -0,0 +1,9 @@
1
+test.list <- atime::atime_test_list(
2
+ binseg_normal_best=atime::atime_test(
3
+ setup={
4
+ max.segs <- as.integer(N/2)
5
+ data_vec <- 1:N
6
+ },
7
+ expr=binsegRcpp::binseg_normal(data_vec, max.segs)
8
+ )
9
+)
.github/workflows/performance-tests.yml
@@ -0,0 +1,22 @@
+name: atime performance tests
+
+on:
+ pull_request:
+ types:
+ - opened
+ - reopened
+ - synchronize
+ paths:
10
+ - 'R/**'
11
+ - 'src/**'
12
+ - '.ci/atime/**'
13
14
+jobs:
15
+ comment:
16
+ runs-on: ubuntu-latest
17
+ container: ghcr.io/iterative/cml:0-dvc2-base1
18
+ env:
19
+ GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
20
+ repo_token: ${{ secrets.GITHUB_TOKEN }}
21
+ steps:
22
+ - uses: Anirban166/[email protected]
0 commit comments