diff --git a/.github/dependabot.yml b/.github/dependabot.yml index cceee9e1..05d510f3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,5 +1,11 @@ version: 2 updates: +- package-ecosystem: "bundler" + schedule: + interval: "weekly" + directories: + - "/tasks/cf-deployment-release-notes-template" + - package-ecosystem: "gomod" directory: "/" schedule: diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml new file mode 100644 index 00000000..55371118 --- /dev/null +++ b/.github/workflows/ruby.yml @@ -0,0 +1,25 @@ +name: Ruby + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + dir: + - "tasks/cf-deployment-release-notes-template" + steps: + - uses: actions/checkout@v3 + - uses: ruby/setup-ruby@v1 + with: + ruby-version: '2.2' + bundler-cache: true + - run: bundle exec rspec . + working-directory: ${{ matrix.dir }} diff --git a/Gemfile.lock b/Gemfile.lock index 462e0325..0e675607 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -21,6 +21,3 @@ PLATFORMS DEPENDENCIES rspec - -BUNDLED WITH - 2.0.1 diff --git a/tasks/cf-deployment-release-notes-template/Gemfile.lock b/tasks/cf-deployment-release-notes-template/Gemfile.lock index 8ee2d9fd..e2f2e0db 100644 --- a/tasks/cf-deployment-release-notes-template/Gemfile.lock +++ b/tasks/cf-deployment-release-notes-template/Gemfile.lock @@ -72,6 +72,3 @@ DEPENDENCIES hashdiff rspec webmock - -BUNDLED WITH - 2.0.1