This repository has been archived by the owner on Dec 26, 2023. It is now read-only.
fix conditional #57
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
jobs: | |
local_test: | |
runs-on: ubuntu-latest | |
env: | |
BATS_LIB_PATH: "/usr/lib" | |
TERM: xterm | |
name: local default | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup BATS | |
uses: mig4/setup-bats@v1 | |
with: | |
bats-version: 1.10.0 | |
- name: Setup Bats-libs | |
uses: ./ | |
with: | |
support-clean: "false" | |
assert-clean: "false" | |
detik-clean: "false" | |
file-clean: "false" | |
- name: Execute test to check Bats-support | |
run: | | |
cd /tmp/bats-support/ | |
bats test | |
- name: Execute test to check Bats-assert | |
run: | | |
cd /tmp/bats-assert/ | |
bats test | |
- name: Execute test to check Bats-detik | |
run: | | |
cd /tmp/bats-detik/ | |
bats tests | |
- name: Execute test to check Bats-file | |
# Currently the bats-file tests are broken | |
# in gh runner env | |
continue-on-error: true | |
run: | | |
cd /tmp/bats-file/ | |
bats test | |
- name: Execute example tests | |
run: | |
bats -T -p tests | |
local_test_trigger_cache: | |
needs: [local_test] | |
runs-on: ubuntu-latest | |
env: | |
BATS_LIB_PATH: "/usr/lib/bats" | |
name: local default | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup BATS | |
uses: mig4/setup-bats@v1 | |
with: | |
bats-version: 1.9.0 | |
- name: Setup Bats-libs | |
uses: ./ | |
with: | |
support-clean: "false" | |
assert-clean: "false" | |
detik-clean: "false" | |
file-clean: "false" | |
- name: Execute test to check Bats-support | |
run: | | |
cd /tmp/bats-support/ | |
bats test | |
- name: Execute test to check Bats-assert | |
run: | | |
cd /tmp/bats-assert/ | |
bats test | |
- name: Execute test to check Bats-detik | |
run: | | |
cd /tmp/bats-detik/ | |
bats tests | |
- name: Execute test to check Bats-file | |
# Currently the bats-file tests are broken | |
# in gh runner env | |
continue-on-error: true | |
run: | | |
cd /tmp/bats-file/ | |
bats test |