Skip to content

Commit 115c4ca

Browse files
committed
Add benchmarks to CI tests
1 parent 72c793e commit 115c4ca

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,14 @@ jobs:
6767
- uses: julia-actions/cache@v1
6868
- name: Build package
6969
uses: julia-actions/julia-buildpkg@v1
70-
- name: Run tests
70+
- name: Run unit tests
7171
uses: julia-actions/julia-runtest@v1
7272
with:
7373
annotate: true
7474
# Only run coverage in one Job (Ubuntu and latest Julia version)
7575
coverage: ${{ matrix.os == 'ubuntu-latest' && matrix.version == '1' }}
76+
env:
77+
POINTNEIGHBORS_TEST: unit
7678
- name: Process coverage results
7779
# Only run coverage in one Job (Ubuntu and latest Julia version)
7880
if: matrix.os == 'ubuntu-latest' && matrix.version == '1'
@@ -89,3 +91,11 @@ jobs:
8991
flags: unit
9092
env:
9193
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
94+
- name: Run benchmark tests
95+
uses: julia-actions/julia-runtest@v1
96+
with:
97+
annotate: true
98+
coverage: false
99+
env:
100+
POINTNEIGHBORS_TEST: benchmarks
101+

0 commit comments

Comments
 (0)