This repository has been archived by the owner on Dec 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e52650c
commit 9d5a980
Showing
2 changed files
with
35 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
on: [push] | ||
|
||
jobs: | ||
local_test: | ||
public_test: | ||
runs-on: ubuntu-latest | ||
name: Install Bats common libs | ||
steps: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,8 +25,40 @@ jobs: | |
uses: actions/checkout@v2 | ||
- name: Setup BATS | ||
uses: mig4/setup-bats@v1 | ||
- name: Install Bats-libs | ||
uses: ./ | ||
- name: Setup Bats libs | ||
uses: brokenpip3/[email protected] | ||
|
||
``` | ||
|
||
## Inputs | ||
|
||
### Bats-support | ||
|
||
* `support-version`: Bats-support version, default to latest | ||
* required: `false` | ||
* default: `0.3.0` | ||
|
||
* `support-path`: Bats-support path | ||
* required: `false` | ||
* default: `/usr/lib/bats-support` | ||
|
||
### Bats-assert | ||
|
||
* `assert-version`: Bats-assert version, default to latest | ||
* required: `false` | ||
* default: `0.2.0` | ||
|
||
* `assert-path`: Bats-assert path | ||
* required: `false` | ||
* default: `/usr/lib/bats-assert` | ||
|
||
### Bats-detik | ||
|
||
* `detik-version`: Bats-detik version, default to latest | ||
* required: `false` | ||
* default: `1.1.0` | ||
|
||
* `detik-path`: Bats-detik path | ||
* required: `false` | ||
* default: `/usr/lib/bats-detik` | ||
|