Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
Binary file added .github/workflows/applicationtoolsinstaller.dmg
Binary file not shown.
44 changes: 44 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Ruby

on: [push, pull_request]

jobs:
`Gemfile`.

3. **SSL Issue in Coveralls**: The `OpenSSL
Here’s the updated `.github/workflows/ruby.yml test:
runs-on: ubuntu-latest

steps:
-::SSL::SSLError` indicates a problem with SSL protocols when connecting to` file:
```yaml
name: Ruby

on: [push, pull_request]

Cover usesalls:. actions This/ ischeckout likely@ duev to4 an
outdated - uses: ruby/setup-r SSL configuration.

### Solution Steps

jobs:
test:
runs-on: ubuntu-latest

steps:
uby@v1
with:
ruby-version: 3.4. - uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ####3 .14.. Update3 Ruby # Version Specify
Ensure the workflow uses a the desired Ruby version
- run Ruby version compatible with your project's dependencies.: openssl version # Debug OpenSSL version
- Update the Ruby version in your `.github/workflows/r run: bundle install
- run: bundle exec rake
uby.yml`:
```yaml
with:
ruby-version: 3```

Make the necessary adjustments to your Gemfile and re-run the workflow to confirm the issues are resolved..4.3 # Update to match the version used in the logs
23 changes: 23 additions & 0 deletions azure-pipelines-1.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Ruby
# Package your Ruby project.
# Add steps that install rails, analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/ruby

trigger:
- master

pool:
vmImage: ubuntu-latest

steps:
- task: UseRubyVersion@0
inputs:
versionSpec: '>= 2.7'

- script: |
gem install bundler
bundle install --retry=3 --jobs=4
displayName: 'Install dependencies with bundler'

- script: bundle exec rake
displayName: 'Run tests with Rake'
19 changes: 19 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml

trigger:
- master

pool:
vmImage: ubuntu-latest

steps:
- script: echo Hello, world!
displayName: 'Run a one-line script'

- script: |
echo Add other tasks to build, test, and deploy your project.
echo See https://aka.ms/yaml
displayName: 'Run a multi-line script'