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 6449567 commit a56255aCopy full SHA for a56255a
.github/workflows/benchmark.yml
@@ -0,0 +1,28 @@
1
+name: Benchmark
2
+on:
3
+ pull_request:
4
+ branches:
5
+ - main
6
+permissions:
7
+ pull-requests: write # action needs to post a comment
8
+
9
+jobs:
10
+ benchmark:
11
+ name: Julia ${{ matrix.version }} - ${{ matrix.platform.os }} - ${{ matrix.platform.arch }} - ${{ github.event_name }}
12
+ runs-on: ${{ matrix.platform.os }}
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ platform:
17
+ - os: ubuntu-latest
18
+ arch: x64
19
+ - os: ubuntu-24.04-arm
20
+ arch: aarch64
21
+ version:
22
+ - '1'
23
+ - 'lts'
24
+ steps:
25
+ - uses: MilesCranmer/AirspeedVelocity.jl@action-v1
26
+ with:
27
+ julia-version: ${{ matrix.version }}
28
+ job-summary: 'false' # true for table in job summary, false for comment
0 commit comments