Remove production deploy #93
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 Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Set up tests | |
run: ./bin/setup_test.sh | |
- name: Run standardrb | |
run: docker-compose run --rm hf bundle exec standardrb | |
- name: Run tests | |
run: docker-compose run --rm hf bin/wait-for mariadb:3306 pushgateway:9091 -- bundle exec rspec | |
- name: Report to Coveralls | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.github_token }} |