separate service starts but still use docker explicitly #94
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 RSpec | |
on: | |
push: | |
branches: | |
- "*" # Trigger on push to any branch | |
jobs: | |
rspec: | |
runs-on: ubuntu-latest | |
if: github.ref != 'refs/heads/main' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run RSpec | |
uses: ./.github/actions/run_rspec | |
with: | |
ruby-version: "3.2.0" | |
postgres-password: ${{ secrets.ROUTE_RATER_DATABASE_PASSWORD }} | |
google-api-key: ${{ secrets.GOOGLE_API_KEY }} |