Skip to content

v1.3.0

v1.3.0 #748

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
branches:
- main
release:
types:
- published
schedule:
- cron: '30 19 * * *'
workflow_dispatch:
jobs:
tests:
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install fish shell
uses: fish-actions/install-fish@v1
- name: Create test file
run: |
cat << 'EOF' > test.fish
@test "truth test" (true) $status -eq 0
EOF
- name: Run fishtape tests
uses: ./
- name: Check fishtape installed
run: type -q fishtape
shell: fish {0}