Skip to content

bogus change

bogus change #19

Workflow file for this run

name: bmark_M1
on:
pull_request_target:
types:
- labeled
jobs:
bmark:
name: Julia ${{ matrix.version }} - macOS - ${{ matrix.arch }} - ${{ github.event_name }}
if: contains(github.event.pull_request.labels.*.name, 'benchmarks')
runs-on: [self-hosted, macOS]
strategy:
fail-fast: false
matrix:
version:
- 1
arch:
- aarch64
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/julia-buildpkg@v1
- name: Install benchmark dependencies
run: julia --project=benchmark -e 'using Pkg; Pkg.instantiate()'
- name: Run benchmarks
run: julia --project=benchmark benchmark/run_benchmarks.jl ${{ github.event.repository.name }}
- name: Post results in in PR
uses: thollander/actions-comment-pull-request@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
filePath: ${{ GITHUB_SHA }}.json

Check failure on line 33 in .github/workflows/bmark_M1.yml

View workflow run for this annotation

GitHub Actions / bmark_M1

Invalid workflow file

The workflow is not valid. .github/workflows/bmark_M1.yml (Line: 33, Col: 21): Unrecognized named-value: 'GITHUB_SHA'. Located at position 1 within expression: GITHUB_SHA
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: benchmarks
path: |
*.svg
*.jld2
*.json