Skip to content

chore(deps-dev): bump braces from 3.0.2 to 3.0.3 #53

chore(deps-dev): bump braces from 3.0.2 to 3.0.3

chore(deps-dev): bump braces from 3.0.2 to 3.0.3 #53

Workflow file for this run

name: validate 'setup-mockery' action
on:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
setup-versions:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
mockery: [2.9.4, 1.1.2]
steps:
- uses: actions/checkout@v3
- name: setup-mockery ${{ matrix.mockery }}
uses: ./
with:
mockery-version: ${{ matrix.mockery }}
- name: verify mockery
run: |
chmod +x ./__tests__/verify-mockery.sh
./__tests__/verify-mockery.sh ${{ matrix.mockery }}
shell: bash