Skip to content

groups hover items with the same documentation strings #18

groups hover items with the same documentation strings

groups hover items with the same documentation strings #18

Workflow file for this run

name: "Pull Request CI"
on:
pull_request:
types: [opened, synchronize]
permissions:
contents: write
jobs:
build-pull-request:
strategy:
matrix:
target:
- "x86_64-linux-musl"
- "aarch64-linux-musl"
- "x86_64-macos"
- "aarch64-macos"
- "x86_64-windows"
- "aarch64-windows"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Zig
uses: goto-bus-stop/setup-zig@v2.1.1
with:
version: ${{ ZIG_VERSION }}

Check failure on line 24 in .github/workflows/pull-request.yml

View workflow run for this annotation

GitHub Actions / Pull Request CI

Invalid workflow file

The workflow is not valid. .github/workflows/pull-request.yml (Line: 24, Col: 20): Unrecognized named-value: 'ZIG_VERSION'. Located at position 1 within expression: ZIG_VERSION .github/workflows/pull-request.yml (Line: 40, Col: 20): Unrecognized named-value: 'ZIG_VERSION'. Located at position 1 within expression: ZIG_VERSION
- name: Build
run: zig build -Dtarget=${{ matrix.target }}
test-pull-request:
strategy:
matrix:
os:
- "ubuntu-latest"
- "windows-latest"
- "macos-latest"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup Zig
uses: goto-bus-stop/setup-zig@v2.1.1
with:
version: ${{ ZIG_VERSION }}
- name: Test
run: zig build test