This repository has been archived by the owner on Dec 26, 2023. It is now read-only.
[create-pull-request] automated change (#16) #121
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
name: "Test public from main" | |
on: | |
workflow_dispatch: | |
pull_request: | |
release: | |
types: [published] | |
push: | |
branches: ["main"] | |
tags: ["*"] | |
jobs: | |
public_test: | |
runs-on: ubuntu-latest | |
env: | |
BATS_LIB_PATH: "/usr/lib" | |
TERM: xterm | |
name: Install Bats common libs | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Bats and Bats-libs | |
uses: brokenpip3/setup-bats-libs@main | |
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 | |
continue-on-error: true | |
run: | | |
cd /tmp/bats-file/ | |
bats test | |
- name: Execute example tests | |
run: | |
bats -T -p tests | |
public_test_trigger_cache: | |
# Run the test again to eventually trigger the cache in the future | |
needs: [public_test] | |
runs-on: ubuntu-latest | |
env: | |
BATS_LIB_PATH: "/usr/lib" | |
name: Install Bats common libs | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Bats and Bats-libs | |
uses: brokenpip3/setup-bats-libs@main | |
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 | |
continue-on-error: true | |
run: | | |
cd /tmp/bats-file/ | |
bats test |