Check for cve job needs git key (for some reason) #88
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: Run Specs | |
on: [ push, pull_request ] | |
jobs: | |
unit_specs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: { lfs: true } | |
- uses: ruby/setup-ruby@v1 | |
with: { working-directory: src/bosh_aws_cpi/ } | |
- name: lint-and-test | |
run: | | |
bundle install | |
bundle exec rake rubocop | |
bundle exec rake spec:unit | |
working-directory: src/bosh_aws_cpi/ |