Skip to content

Commit

Permalink
Merge branch 'master' into release/v1
Browse files Browse the repository at this point in the history
  • Loading branch information
e1himself committed Dec 22, 2023
2 parents fa9b402 + 69aeb47 commit b307868
Show file tree
Hide file tree
Showing 4 changed files with 98 additions and 44 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: "Integration test"
on: # rebuild any PRs and main branch changes
schedule:
- cron: '0 12 * * 1'
push:
branches:
- master

jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1

- name: "Install goss & co"
uses: e1himself/goss-installation-action@v1

- name: "Validate installed tools"
run: goss validate

22 changes: 22 additions & 0 deletions goss.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
command:
goss:
exit-status: 0
exec: "goss --help"
stdout:
- "goss - Quick and Easy server validation"

dgoss:
exit-status: 1
stderr:
- "ERROR: USAGE: dgoss"

kgoss:
exec: "kgoss --help"
exit-status: 2
stderr:
- "Usage:"

dcgoss:
exit-status: 1
stdout:
- "no docker-compose file found in ."
94 changes: 53 additions & 41 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
"author": "Ivan Voskoboinyk <ivan@voskoboinyk.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.6.1"
"@actions/core": "^1.10.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.11",
Expand Down

0 comments on commit b307868

Please sign in to comment.