made outdated check to pass #40
Workflow file for this run
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
name: Ruby Build, Lint and Test | |
on: | |
push: | |
jobs: | |
build-test-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout xero-ruby repo | |
uses: actions/checkout@v4 | |
with: | |
repository: XeroAPI/xero-ruby | |
path: xero-ruby | |
- name: Set up Ruby environment | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.2.0' | |
bundler-cache: true | |
- name: Install dependencies | |
run: bundle install | |
working-directory: xero-ruby | |
- name: Check Outdated Packages | |
run: bundle outdated || true | |
working-directory: xero-ruby | |
- name: Check Vulnerable Packages | |
run: bundle audit | |
working-directory: xero-ruby | |
- name: Compile Build | |
run: find . -name "*.rb" | xargs -n 1 ruby -c > /dev/null 2>&1 || exit 1 | |
working-directory: xero-ruby | |
- name: Lint Code | |
run: bundle exec rubocop | |
working-directory: xero-ruby | |
- name: Run Tests | |
run: bundle exec rake spec | |
working-directory: xero-ruby |