fastify / workflows

Reusable workflows for use in the Fastify organization
MIT License
10 stars 6 forks source link

fix invalid definition in `plugins-ci` and `plugins-ci-redis` #84

Closed rluvaton closed 1 year ago

rluvaton commented 1 year ago

fix:

Example of usage:

strategy:
  matrix:
    os: [macos-latest, windows-latest]
    version: [12, 14, 16]
    environment: [staging, production]
    exclude:
      - os: macos-latest
        version: 12
        environment: production
      - os: windows-latest
        version: 16
runs-on: ${{ matrix.os }}

from Github Actions docs - Using a matrix for your jobs - Excluding matrix configurations

rluvaton commented 1 year ago

@mcollina