Skip to content

Commit

Permalink
[ci] Add bats install
Browse files Browse the repository at this point in the history
  • Loading branch information
goldyfruit committed Nov 17, 2023
1 parent c2b005d commit 46da4a1
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/shell_testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Shell testing with BATS

on:
push:
branches:
- main
pull_request:
workflow_dispatch:

jobs:
ansible-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install BATS requirements
run: |
mkdir ~/shell-testing
cd ~/shell-testing
git init
git submodule add https://github.com/bats-core/bats-core.git bats
git submodule add https://github.com/bats-core/bats-support.git test_helper/bats-support
git submodule add https://github.com/bats-core/bats-assert.git test_helper/bats-assert
git submodule add https://github.com/bats-core/bats-file.git test_helper/bats-file
cd bats
bash install.sh

0 comments on commit 46da4a1

Please sign in to comment.