Archived
1
0

Add installer unit tests

This commit is contained in:
Asher
2021-07-13 12:22:00 -05:00
parent c31e72fb7b
commit 24f6834f5b
5 changed files with 202 additions and 0 deletions

27
.github/workflows/scripts.yml vendored Normal file
View File

@ -0,0 +1,27 @@
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