Skip to content

Fix the allocator access example for shared memory (#1004) #1448

Fix the allocator access example for shared memory (#1004)

Fix the allocator access example for shared memory (#1004) #1448

Workflow file for this run

on:

Check failure on line 1 in .github/workflows/apply-style.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/apply-style.yml

Invalid workflow file

(Line: 2, Col: 17): A sequence was not expected
pull_request: []
name: Apply Style
jobs:
apply-style:
name: Apply Style to Source
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- name: Apply style updates
uses: ./.github/actions/apply-style
- name: Push changed files
run: |
printf "GitHub Actor: ${GITHUB_ACTOR}\n"
git config user.name "github-actions"
git config user.email "github-actions@users.noreply.github.com"
if [ -n "$(git status --porcelain)" ]; then
git commit -am 'Apply style updates'
git push
fi