-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Dan Webb <[email protected]>
- Loading branch information
Showing
13 changed files
with
58 additions
and
35 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,3 +1,4 @@ | ||
--- | ||
version: 2 | ||
updates: | ||
- package-ecosystem: bundler | ||
|
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
name: release-please | ||
|
||
"on": | ||
push: | ||
branches: [main] | ||
|
||
jobs: | ||
release-please: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: google-github-actions/release-please-action@v3 | ||
id: release | ||
with: | ||
release-type: ruby | ||
package-name: busser-bats | ||
version-file: lib/busser/bats/version.rb | ||
token: ${{ secrets.PORTER_GITHUB_TOKEN }} | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
if: ${{ steps.release.outputs.release_created }} | ||
|
||
- name: Build and publish to GitHub Package | ||
uses: actionshub/publish-gem-to-github@main | ||
if: ${{ steps.release.outputs.release_created }} | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
owner: ${{ secrets.OWNER }} | ||
|
||
- name: Build and publish to RubyGems | ||
uses: actionshub/publish-gem-to-rubygems@main | ||
if: ${{ steps.release.outputs.release_created }} | ||
with: | ||
token: ${{ secrets.RUBYGEMS_API_KEY }} |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"fix": false, | ||
"globs": ["**/*.md", "!vendor"], | ||
// "ignores": ["ignore*.md"], | ||
"noProgress": false, | ||
"showFound": true | ||
} |
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
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
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,4 +1,4 @@ | ||
# <a name="title"></a> Busser::RunnerPlugin::Bats | ||
# Busser::RunnerPlugin::Bats | ||
|
||
[![Gem Version](https://badge.fury.io/rb/busser-bats.png)](http://badge.fury.io/rb/busser-bats) | ||
[![Build Status](https://travis-ci.org/test-kitchen/busser-bats.png?branch=master)](https://travis-ci.org/test-kitchen/busser-bats) | ||
|
@@ -10,15 +10,15 @@ A Busser runner plugin for [Bats][bats_site] | |
|
||
This software project is no longer under active development as it has no active maintainers. The software may continue to work for some or all use cases, but issues filed in GitHub will most likely not be triaged. If a new maintainer is interested in working on this project please come chat with us in #test-kitchen on Chef Community Slack. | ||
|
||
## <a name="installation"></a> Installation and Setup | ||
## Installation and Setup | ||
|
||
Until proper reference documentation is complete, the [Writing a Test](http://kitchen.ci/docs/getting-started/writing-test) section of the Test Kitchen's [Getting Started Guide](http://kitchen.ci/docs/getting-started/) gives a working example of creating a bats test. | ||
|
||
## <a name="usage"></a> Usage | ||
## Usage | ||
|
||
**TODO:** Write documentation explaining the structure/format of testing files. | ||
|
||
## <a name="development"></a> Development | ||
## Development | ||
|
||
* Source hosted at [GitHub][repo] | ||
* Report issues/questions/feature requests on [GitHub Issues][issues] | ||
|
@@ -33,11 +33,11 @@ example: | |
4. Push to the branch (`git push origin my-new-feature`) | ||
5. Create new Pull Request | ||
|
||
## <a name="authors"></a> Authors | ||
## Authors | ||
|
||
Created and maintained by [Fletcher Nichol][author] (<[email protected]>) | ||
|
||
## <a name="license"></a> License | ||
## License | ||
|
||
Apache 2.0 (see [LICENSE][license]) | ||
|
||
|
@@ -48,6 +48,5 @@ Apache 2.0 (see [LICENSE][license]) | |
[issues]: https://github.com/fnichol/busser-bats/issues | ||
[license]: https://github.com/fnichol/busser-bats/blob/master/LICENSE | ||
[repo]: https://github.com/fnichol/busser-bats | ||
[plugin_usage]: http://docs.kitchen-ci.org/busser/plugin-usage | ||
|
||
[bats_site]: https://github.com/sstephenson/bats |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,4 +1,3 @@ | ||
# -*- encoding: utf-8 -*- | ||
# | ||
# Author:: Fletcher Nichol (<[email protected]>) | ||
# | ||
|
@@ -17,10 +16,7 @@ | |
# limitations under the License. | ||
|
||
module Busser | ||
|
||
module Bats | ||
|
||
# Version string for the Bats Busser runner plugin | ||
VERSION = "0.3.1.dev" | ||
VERSION = "0.3.1.dev".freeze | ||
end | ||
end |
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,4 +1,3 @@ | ||
# -*- encoding: utf-8 -*- | ||
# | ||
# Author:: Fletcher Nichol (<[email protected]>) | ||
# | ||
|
@@ -16,7 +15,7 @@ | |
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
require "pathname" | ||
require "pathname" unless defined?(Pathname) | ||
|
||
require "busser/runner_plugin" | ||
|
||
|