Make CI zippier with alpine

This commit is contained in:
Luke Murphy 2020-10-25 21:19:14 +01:00
parent 4bf1dbd7eb
commit bf44270b3d
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 4 additions and 7 deletions

View File

@ -3,18 +3,15 @@ kind: pipeline
name: linters
steps:
- name: run shellcheck
image: debian:buster
image: alpine:latest
commands:
- apt update
- apt install -y shellcheck
- apk add shellcheck
- shellcheck abra
- name: run unit tests
image: debian:buster
image: docker:dind
commands:
- apt update
- apt install -y bats curl
- curl -fsSL https://get.docker.com | sh
- apk add bats curl
- bats test.bats
trigger:
branch: