mirror of
https://github.com/stefanzweifel/git-auto-commit-action.git
synced 2024-11-06 02:08:05 +00:00
24 lines
377 B
YAML
24 lines
377 B
YAML
name: tests
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install Shell Mock
|
|
run: |
|
|
git clone https://github.com/capitalone/bash_shell_mock
|
|
cd bash_shell_mock
|
|
sudo ./install.sh /usr/local
|
|
|
|
- name: Install BATS
|
|
run: yarn install
|
|
|
|
- name: Run Tests
|
|
run: yarn test
|
|
|