mirror of
https://github.com/stefanzweifel/git-auto-commit-action.git
synced 2026-06-16 16:38:51 +00:00
23 lines
357 B
YAML
23 lines
357 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
|
|
echo ::add-path bash_shell_mock/bin
|
|
|
|
- name: Install BATS
|
|
run: yarn install
|
|
|
|
- name: Run Tests
|
|
run: yarn test
|
|
|