Ensure github actions run on merge to main branch (#1207)

Remove missed debug line from unit test workflow.
This commit is contained in:
Darragh Bailey
2021-02-20 15:33:15 +00:00
committed by GitHub
parent 66d394d42e
commit bb2b022d3f
2 changed files with 4 additions and 4 deletions

View File

@@ -3,13 +3,13 @@ name: docker-image
on: on:
push: push:
branches: branches:
- '**' - master
tags: tags:
- '*.*.*' - '*.*.*'
pull_request: pull_request:
jobs: jobs:
main: build-docker-image:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- -

View File

@@ -9,7 +9,8 @@ name: CI
on: on:
push: push:
branches: [ $default-branch ] branches:
- master
pull_request: pull_request:
jobs: jobs:
@@ -68,7 +69,6 @@ jobs:
- name: Run tests - name: Run tests
run: | run: |
bundle exec rspec --color --format documentation bundle exec rspec --color --format documentation
cat ./coverage/lcov.info
env: env:
VAGRANT_VERSION: ${{ matrix.vagrant }} VAGRANT_VERSION: ${{ matrix.vagrant }}
- name: Coveralls Parallel - name: Coveralls Parallel