diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..5ace460 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/applicationtoolsinstaller.dmg b/.github/workflows/applicationtoolsinstaller.dmg new file mode 100644 index 0000000..bf730b0 Binary files /dev/null and b/.github/workflows/applicationtoolsinstaller.dmg differ diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml new file mode 100644 index 0000000..8694806 --- /dev/null +++ b/.github/workflows/ruby.yml @@ -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 diff --git a/azure-pipelines-1.yml b/azure-pipelines-1.yml new file mode 100644 index 0000000..206e414 --- /dev/null +++ b/azure-pipelines-1.yml @@ -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' \ No newline at end of file diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..27a798a --- /dev/null +++ b/azure-pipelines.yml @@ -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'