Oops. This change was previously made only on the master branch. #16
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
# Continuous integration to Docker Hub | |
name: Build test images with selective audit | |
on: | |
push: | |
branches: | |
- 'rails-7' | |
tags: | |
- '[t]*' | |
pull_request: | |
branches: | |
- 'rails-7' | |
jobs: | |
audit: | |
name: Run selective audit | |
uses: ./.github/workflows/selective-audit.yml | |
with: | |
run-bundle-audit: true | |
run-lint: false | |
run-brakeman: true | |
tests: | |
name: Run tests | |
uses: ./.github/workflows/run-tests.yml | |
build: | |
name: Build and push | |
needs: [ audit, tests ] | |
uses: ./.github/workflows/build.yml | |
with: | |
image: jmessenger/maint-autobuild-test | |
secrets: inherit |