Remove space

This commit is contained in:
Christian Semmler 2025-03-09 14:41:34 -07:00
parent 94f9484aea
commit a5688c2eae
5 changed files with 1 additions and 17 deletions

View File

@ -2,10 +2,6 @@ name: Analyze
on: [push, pull_request] on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs: jobs:
decomplint-isle: decomplint-isle:
name: ${{ matrix.who }} annotations name: ${{ matrix.who }} annotations

View File

@ -2,10 +2,6 @@ name: Build
on: [push, pull_request] on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs: jobs:
fetch-deps: fetch-deps:
name: Download original binaries name: Download original binaries

View File

@ -51,7 +51,7 @@ jobs:
shell: bash shell: bash
run: | run: |
# Calculate instance number based on matrix inputs # Calculate instance number based on matrix inputs
INSTANCE = $((${{ matrix.high }} << 4 | ${{ matrix.low }})) INSTANCE=$((${{ matrix.high }} << 4 | ${{ matrix.low }}))
# Get the first 8 characters of the SHA (enough for a decent seed) # Get the first 8 characters of the SHA (enough for a decent seed)
SHA_PREFIX=$(echo "${{ github.sha }}" | cut -c 1-8) SHA_PREFIX=$(echo "${{ github.sha }}" | cut -c 1-8)

View File

@ -2,10 +2,6 @@ name: Format
on: [push, pull_request] on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs: jobs:
clang-format: clang-format:
name: C++ name: C++

View File

@ -2,10 +2,6 @@ name: Naming
on: [push, pull_request] on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs: jobs:
ncc: ncc:
name: C++ name: C++