Bump github.com/fatih/color from 1.15.0 to 1.16.0 #110
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: Integation Tests | |
on: | |
pull_request: | |
branches: [ main ] | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
integration: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'go.mod' | |
- name: Build Go | |
run: make linux | |
- name: Build Docker | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
tags: cloudfoundry/bc:latest | |
push: false | |
- name: Run Tests | |
run: | | |
make e2e |