File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff 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'
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+
You can’t perform that action at this time.
0 commit comments