Skip to content

Replace Travis CI with GitHub Actions #4

Replace Travis CI with GitHub Actions

Replace Travis CI with GitHub Actions #4

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
test_shell:
- bash
- zsh
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Test
uses: sudo-bot/action-shunit2@latest
env:
TEST_SHELLS: ${{ matrix.test_shell }}
with:
cli: ./run_tests.sh