Add workflow to run unit specs #63
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: Run Specs | |
on: push #[push, pull_request] | |
jobs: | |
# unit_specs: | |
# runs-on: ubuntu-latest | |
# strategy: | |
# matrix: | |
# sub_project: | |
# - common | |
# - core | |
# - dev | |
# - director-core | |
# - monitor | |
# - nats-sync | |
# - template | |
# steps: | |
# - uses: actions/checkout@v4 | |
# with: { lfs: true} | |
# - uses: ruby/setup-ruby@v1 | |
# with: { working-directory: src/ } | |
# - run: bundle install | |
# working-directory: src/ | |
# - run: bundle exec rake spec:unit:${{matrix.sub_project}}:parallel | |
# working-directory: src/ | |
unit_specs_director: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: { lfs: true} | |
- uses: ruby/setup-ruby@v1 | |
with: { working-directory: src/ } | |
- run: sudo systemctl start postgresql.service | |
- run: sudo -u postgres createuser --superuser runner | |
- run: bundle | |
working-directory: src/ | |
- run: bundle exec rspec bosh-director/spec/unit/models/event_spec.rb | |
working-directory: src/ |