28 lines
515 B
YAML
28 lines
515 B
YAML
|
name: Script unit tests
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
paths:
|
||
|
- "installer.sh"
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
name: Run script unit tests
|
||
|
runs-on: ubuntu-latest
|
||
|
# This runs on Alpine to make sure we're testing with actual sh.
|
||
|
container: "alpine:3.14"
|
||
|
steps:
|
||
|
- name: Checkout repo
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Install bats
|
||
|
run: apk add bats
|
||
|
|
||
|
- name: Run script unit tests
|
||
|
run: ./ci/dev/test-scripts.sh
|