Skip to content

README improvements #72

README improvements

README improvements #72

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: sudo apt-get install shellcheck -y
- run: shellcheck -x bin/*
- run: find . -name "*.sh" -exec shellcheck -x {} \;
shunit2:
runs-on: ubuntu-latest
strategy:
matrix:
stack:
- name: heroku-20
image: heroku/heroku:20-build
- name: heroku-22
image: heroku/heroku:22-build
container: ${{ matrix.stack.image }}
steps:
- uses: actions/checkout@v2
- run: ./tests.sh
env:
STACK: ${{ matrix.stack.name }}