chore: remove push ci #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
branches: ["main"] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: fish-actions/[email protected] | |
- uses: fish-actions/fisher@v1 | |
with: | |
plugins: jorgebucaran/fishtape ilancosman/clownfish $GITHUB_WORKSPACE | |
- name: Set up Homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
# Homebrew is only missing from ubuntu images per https://github.com/actions/runner-images/issues/6283 | |
if: matrix.os == 'ubuntu-latest' | |
- name: Install neovim | |
run: brew install neovim | |
- name: Run full test suite | |
run: fishtape tests/*.fish | |
shell: fish {0} | |
timeout-minutes: 3 | |
syntax-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: fish-actions/install-fish@v1 | |
- uses: fish-actions/syntax-check@v1 | |
# check Fish format | |
format-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: fish-actions/install-fish@v1 | |
- uses: fish-actions/format-check@v1 |