...

Text file src/github.com/google/go-containerregistry/.github/workflows/boilerplate.yaml

Documentation: github.com/google/go-containerregistry/.github/workflows

     1name: Boilerplate
     2
     3on:
     4  pull_request:
     5    branches: ['main']
     6
     7jobs:
     8
     9  check:
    10    name: Boilerplate Check
    11    runs-on: ubuntu-latest
    12    strategy:
    13      fail-fast: false # Keep running if one leg fails.
    14      matrix:
    15        extension:
    16        - go
    17        - sh
    18
    19        # Map between extension and human-readable name.
    20        include:
    21        - extension: go
    22          language: Go
    23        - extension: sh
    24          language: Bash
    25
    26    steps:
    27      - name: Check out code
    28        uses: actions/checkout@v3
    29
    30      - uses: chainguard-dev/actions/boilerplate@5e21cb47971231c078a677dfe89a348371cb880c # main
    31        with:
    32          extension: ${{ matrix.extension }}
    33          language: ${{ matrix.language }}

View as plain text