Skip to content

Bump fish-shop/run-fishtape-tests from 1.5.13 to 1.5.14 #392

Bump fish-shop/run-fishtape-tests from 1.5.13 to 1.5.14

Bump fish-shop/run-fishtape-tests from 1.5.13 to 1.5.14 #392

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
branches:
- main
release:
types:
- published
workflow_dispatch:
jobs:
syntax:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Install fish shell
uses: fish-shop/install-fish-shell@ea9d9a97b67e680087469e2398f03cfbc477a6c7 # v1.0.9
- name: Syntax check fish files
uses: fish-shop/syntax-check@v1
tests:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Fetch repository history for access to tags in tests
run: git fetch --prune --unshallow --tags --force
- name: Install fish shell
uses: fish-shop/install-fish-shell@ea9d9a97b67e680087469e2398f03cfbc477a6c7 # v1.0.9
- name: Install pond
uses: fish-shop/install-plugin@6b841c19617c8dcb06d31d8d1ad4c7a549488c4e # v2.2.14
with:
plugin-manager: fisher
plugins: (pwd)
- name: Run Fishtape tests
uses: fish-shop/run-fishtape-tests@f761f39f9575c4194515c931c375caa2d775c46f # v1.5.14
with:
pattern: tests/**.fish
install:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
plugin-manager: [fisher, oh-my-fish]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Install fish shell
uses: fish-shop/install-fish-shell@ea9d9a97b67e680087469e2398f03cfbc477a6c7 # v1.0.9
- name: Install pond using ${{ matrix.plugin-manager }}
uses: fish-shop/install-plugin@6b841c19617c8dcb06d31d8d1ad4c7a549488c4e # v2.2.14
with:
plugin-manager: ${{ matrix.plugin-manager }}
plugins: (pwd)
- name: Check pond is installed
run: functions -q pond
shell: fish {0}