2019-10-23 18:18:28 -04:00
|
|
|
name: CI
|
2020-02-17 14:54:23 -05:00
|
|
|
on: [push, pull_request]
|
2019-10-23 18:18:28 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
2022-09-22 05:34:02 -04:00
|
|
|
fail-fast: false
|
2019-10-23 18:18:28 -04:00
|
|
|
matrix:
|
2022-09-22 05:34:02 -04:00
|
|
|
os: [ubuntu-latest, macos-latest]
|
2019-10-23 18:18:28 -04:00
|
|
|
|
|
|
|
steps:
|
2022-11-22 09:48:26 -05:00
|
|
|
- uses: actions/checkout@v3
|
2019-10-23 18:18:28 -04:00
|
|
|
- name: Install bats
|
|
|
|
run: git clone --depth 1 https://github.com/sstephenson/bats.git
|
|
|
|
- name: Run tests
|
|
|
|
run: PATH="./bats/bin:$PATH" test/run
|